GC.Collect in a loop? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:01:03Z http://stackoverflow.com/feeds/question/653730 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/653730/gc-collect-in-a-loop 11 GC.Collect in a loop? Diadistis 2009-03-17T10:51:48Z 2009-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 &gt; 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#653742 6 Answer by Grzenio for GC.Collect in a loop? Grzenio 2009-03-17T10:57:03Z 2009-03-17T10:57:03Z <p>Looks truly horrible :)</p> http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/653746#653746 1 Answer by ck for GC.Collect in a loop? ck 2009-03-17T10:58:15Z 2009-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#653753 0 Answer by Andrew Hare for GC.Collect in a loop? Andrew Hare 2009-03-17T11:00:11Z 2009-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#653769 8 Answer by Jon Skeet for GC.Collect in a loop? Jon Skeet 2009-03-17T11:04:20Z 2009-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#653782 0 Answer by Brian Rasmussen for GC.Collect in a loop? Brian Rasmussen 2009-03-17T11:08:48Z 2009-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#653798 3 Answer by jalf for GC.Collect in a loop? jalf 2009-03-17T11:15:26Z 2009-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#653820 2 Answer by Laodimos for GC.Collect in a loop? Laodimos 2009-03-17T11:23:41Z 2009-03-17T11:23:41Z <p>probably lsd or something..</p> http://stackoverflow.com/questions/653730/gc-collect-in-a-loop/654625#654625 1 Answer by Chris Dunaway for GC.Collect in a loop? Chris Dunaway 2009-03-17T15:02:08Z 2009-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>