GS
am 11.10.2007 20:18:00 von AMCan someone tell me if gc.collect is a good idea after 50,000 rows display?
Can someone tell me if gc.collect is a good idea after 50,000 rows display?
AM wrote:
> Can someone tell me if gc.collect is a good idea after 50,000 rows display?
It's almost completely certain that it's not a good idea.
50,000 rows of what, displayed in what way, and why do you think that
the garbage collector can't handle it by itself?
--
Göran Andersson
_____
http://www.guffa.com
50,000 rows with 10 columns data returned from sql server to web for
download. My web app will zip after the data is brought from sql and then let
user download it.
Thanks
"Göran Andersson" wrote:
> AM wrote:
> > Can someone tell me if gc.collect is a good idea after 50,000 rows display?
>
> It's almost completely certain that it's not a good idea.
>
> 50,000 rows of what, displayed in what way, and why do you think that
> the garbage collector can't handle it by itself?
>
> --
> Göran Andersson
> _____
> http://www.guffa.com
>
AM wrote:
> 50,000 rows with 10 columns data returned from sql server to web for
> download. My web app will zip after the data is brought from sql and then let
> user download it.
Ok. That's a fairly normal situation. The garbage collector will handle
that just fine on it's own.
--
Göran Andersson
_____
http://www.guffa.com