GS

GS

am 11.10.2007 20:18:00 von AM

Can someone tell me if gc.collect is a good idea after 50,000 rows display?

Re: GS

am 12.10.2007 00:17:43 von Guffa

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

Re: GS

am 12.10.2007 00:30:00 von AM

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
>

Re: GS

am 12.10.2007 09:03:31 von Guffa

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