What does PermGen actually stand for? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T05:28:39Z http://stackoverflow.com/feeds/question/318942 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for 4 What does PermGen actually stand for? SCdF 2008-11-25T21:30:30Z 2008-11-26T14:36:25Z <p>I know what PermGen is, what it's used for, why it fails, how to increase it etc.</p> <p>What I don't know is what PermGen actually stands for. Permanent... Gen... something?</p> <p>Does anyone know what PermGen actually stands for?</p> http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for/318949#318949 6 Answer by Dustin for What does PermGen actually stand for? Dustin 2008-11-25T21:32:46Z 2008-11-25T21:32:46Z <p>Permanent Generation. See the java <a href="http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html" rel="nofollow">GC tuning guide</a> for more details on the garbage collector.</p> http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for/318950#318950 3 Answer by nsayer for What does PermGen actually stand for? nsayer 2008-11-25T21:32:58Z 2008-11-25T21:32:58Z <p>Permanent Generation.</p> <p>The garbage collector is known as a Generational garbage collector. Long lived objects wind up in the Permanent Generation.</p> http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for/318954#318954 3 Answer by Rob Kennedy for What does PermGen actually stand for? Rob Kennedy 2008-11-25T21:33:37Z 2008-11-25T21:33:37Z <p><a href="http://mindprod.com/jgloss/permgen.html" rel="nofollow">Permanent generation</a></p> http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for/318957#318957 3 Answer by Uri for What does PermGen actually stand for? Uri 2008-11-25T21:34:14Z 2008-11-25T21:34:14Z <p>If I remember correctly, the gen stands for generation, as in a generational garbage collector (that treats younger objects differently than mid-life and "permanent" objects). Principle of locality suggests that recently created objects will be wiped out first.</p> http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for/318958#318958 3 Answer by Michael Easter for What does PermGen actually stand for? Michael Easter 2008-11-25T21:34:35Z 2008-11-25T21:34:35Z <p>PermGen stands for <em>Permanent Generation</em>.</p> <p><a href="http://www.ddj.com/java/188700760?pgno=5" rel="nofollow">Here is a brief blurb</a> on DDJ</p> http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for/320141#320141 2 Answer by Ivan Dubrov for What does PermGen actually stand for? Ivan Dubrov 2008-11-26T09:27:15Z 2008-11-26T09:27:15Z <p><a href="http://blogs.sun.com/jonthecollector/entry/presenting_the_permanent_generation" rel="nofollow">Good description</a> from the guy who knows a lot about GC internals. There are a plenty of useful GC-related info in his blog, by the way.</p> http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for/320469#320469 0 Answer by Tom Hawtin - tackline for What does PermGen actually stand for? Tom Hawtin - tackline 2008-11-26T11:57:44Z 2008-11-26T11:57:44Z <p>Permanent Generation. Details are of course implementation specific.</p> <p>Briefly, it contains the Java objects associated with classes and interned strings. In Sun's client implementation whith sharing on, <code>classes.jsa</code> is memory mapped to form the initial data, with about half read-only and half copy-on-write.</p> <p>Java objects that are merely old are kept in the Tenured Generation.</p> http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for/320901#320901 1 Answer by bajafresh4life for What does PermGen actually stand for? bajafresh4life 2008-11-26T14:36:25Z 2008-11-26T14:36:25Z <p>Unfortunately, the answer chosen is wrong. PermGen is used by the JVM to hold loaded classes. You can increase it using:</p> <p>-XX:MaxPermSize=384m</p> <p>if you're using the Sun JVM</p> <p>So if you get an OutOfMemoryException: PermGen you need to either make PermGen bigger or you might be having class loader problems.</p>