all groups > dotnet remoting > august 2003 >
You're in the

dotnet remoting

group:

Memory Grow Returnig DataSet



Memory Grow Returnig DataSet Mauricio Pires
8/28/2003 5:41:17 AM
dotnet remoting: My singleton server object has a method that creates and
returns a big dataset to a client application.
Although the server doesn't have any reference to dataset
after returned it, the server memory grows and doesn't
reduce.
I think that after the Return statement the memory would
reduce because the server doesn't have a reference to
dataset anymore.
What would I do to reduce the server memory after returned
the dataset?
Re: Memory Grow Returnig DataSet IGor
8/29/2003 1:15:06 PM
If you are using .Net Framework 1.0 then you could be one more victim of
Large objects memory allocation bug.

In short:
Once used large objects memory is newer returned to the system.
For long running applications which uses lot of large objects chances are
good to get out of memory exception.

..Net Framework 1.1 should solve problem.

If you are using .Net Framework 1.1 once after GC runs memory shold be
returned to the system.


[quoted text, click to view]

AddThis Social Bookmark Button