GC.Collect in a loop? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T15:01:03Zhttp://stackoverflow.com/feeds/question/653730http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/653730/gc-collect-in-a-loop11GC.Collect in a loop?Diadistis2009-03-17T10:51:48Z2009-03-17T15:02:08Z
<p>I found this piece of code inside System.Web.ISAPIRuntime using Reflector</p>
<pre><code>public void DoGCCollect()
{
for (int i = 10; i > 0; i--)
{
GC.Collect();
}
}
</code></pre>
<p>Can anyone comment on this? Is there a reason to do GC.Collect() in a loop? Why 10 times and not 3, 5 or 20? Analysis indicated that it's not used inside .net framework but it's public so I suppose that IIS could call it...</p>
<p><strong>edit :</strong></p>
<p>Just for clarification purposes : I have never called GC.Collect and I have no intentions of using it. I know it's a bad idea in most (if not all) cases. The question is why .net framework does it. Thanks for all your answers.</p>
http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/653742#6537426Answer by Grzenio for GC.Collect in a loop?Grzenio2009-03-17T10:57:03Z2009-03-17T10:57:03Z<p>Looks truly horrible :)</p>
http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/653746#6537461Answer by ck for GC.Collect in a loop?ck2009-03-17T10:58:15Z2009-03-17T10:58:15Z<p>Looks like someone with a doomsday complex wrote it with connotations that they'd be ending the world with a 10 second timer...</p>
http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/653753#6537530Answer by Andrew Hare for GC.Collect in a loop?Andrew Hare2009-03-17T11:00:11Z2009-03-17T11:05:17Z<p>This is not a good idea because you really ought to trust the garbage collector to do its job without being invoked specifically from your code.</p>
<p>99.9% of the time you never need to call the GC from your code.</p>
http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/653769#6537698Answer by Jon Skeet for GC.Collect in a loop?Jon Skeet2009-03-17T11:04:20Z2009-03-17T11:04:20Z<p>Yes, that's horrible. Firstly, you shouldn't need to do it at all. However, if you really want to force garbage collection as hard as you can, and wait for it to finish, you should probably use:</p>
<pre><code>GC.Collect(GC.MaxGeneration, GCCollectionMode.Forced);
GC.WaitForPendingFinalizers();
// Collect anything that's just been finalized
GC.Collect(GC.MaxGeneration, GCCollectionMode.Forced);
</code></pre>
<p>Really not a nice idea though.</p>
http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/653782#6537820Answer by Brian Rasmussen for GC.Collect in a loop?Brian Rasmussen2009-03-17T11:08:48Z2009-03-17T11:08:48Z<p>First of all it is not a good idea to call <code>GC.Collect()</code>. Calling it multiple times has little effect. </p>
<p>However, you sometimes see the pattern of calling <code>Collect()</code>, then <code>WaitForPendingFinalizers()</code>, and then finally <code>Collect()</code> again. The idea behind this is to ensure that instances with finalizers are also reclaimed, as they will survive the first collection. Keep in mind tough that this will induce a delay in the application and it should <em>very rarely</em> be needed. </p>
http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/653798#6537983Answer by jalf for GC.Collect in a loop?jalf2009-03-17T11:15:26Z2009-03-17T11:33:44Z<p>I don't think you're going to get a better explanation that "one of Microsoft's programmers is pretty clueless, and apparently, no one else bothered to look at his code before it was checked in". ;)</p>
<p>It does look scary though.</p>
<p>It's a fairly common response to bugs you don't understand though. For whatever reason, you're trying to call the GC, and somehow, calling it doesn't seem to solve your problem (perhaps the real problem was just that you should wait for the finalizer thread or something), so the naive solution is obviously "Well, I'll just keep calling it then".</p>
<p>Similar to pressing 'print' repeatedly until your document is printed.</p>
<p>Perhaps you should submit it to thedailywtf.com though.</p>
http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/653820#6538202Answer by Laodimos for GC.Collect in a loop?Laodimos2009-03-17T11:23:41Z2009-03-17T11:23:41Z<p>probably lsd or something..</p>
http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/654625#6546251Answer by Chris Dunaway for GC.Collect in a loop?Chris Dunaway2009-03-17T15:02:08Z2009-03-17T15:02:08Z<p>Shouldn't things like this be pointed out to Microsoft? Would it do any good to post this on the Connect site?</p>