What does PermGen actually stand for? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T05:28:39Zhttp://stackoverflow.com/feeds/question/318942http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for4What does PermGen actually stand for?SCdF2008-11-25T21:30:30Z2008-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#3189496Answer by Dustin for What does PermGen actually stand for?Dustin2008-11-25T21:32:46Z2008-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#3189503Answer by nsayer for What does PermGen actually stand for?nsayer2008-11-25T21:32:58Z2008-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#3189543Answer by Rob Kennedy for What does PermGen actually stand for?Rob Kennedy2008-11-25T21:33:37Z2008-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#3189573Answer by Uri for What does PermGen actually stand for?Uri2008-11-25T21:34:14Z2008-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#3189583Answer by Michael Easter for What does PermGen actually stand for?Michael Easter2008-11-25T21:34:35Z2008-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#3201412Answer by Ivan Dubrov for What does PermGen actually stand for?Ivan Dubrov2008-11-26T09:27:15Z2008-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#3204690Answer by Tom Hawtin - tackline for What does PermGen actually stand for?Tom Hawtin - tackline2008-11-26T11:57:44Z2008-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#3209011Answer by bajafresh4life for What does PermGen actually stand for?bajafresh4life2008-11-26T14:36:25Z2008-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>