GS

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can someone tell me if gc.collect is a good idea after 50,000 rows display?
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top