GS

  • Thread starter Thread starter Guest
  • Start date Start date
AM said:
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?
 
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
 
AM said:
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.
 
Back
Top