I have a \"OutOfMemoryError: PermGen space\" erro开发者_如何学运维r on my CF 8 server. In my app 1000 templates were loaded into the same local variable (for testing purpose), so once the next one is
i am using IntelliJ to develop Grails application but as our application grows i am hitting the Permgen errors when using the Tomcat plugin. I have tried several combination in 开发者_运维百科settings
A standard pattern used in Scala class library is definition of classes within classes and traits. And most of the operations of objects of parent classes result in objects of those inner classes bein
How do I determine how large a single, specific class definition (not the instantiated object) is? Specifically, how much PermGen memory does a given class use? If it cannot be calculated, how roughly
We\'ve been pushing the permgen memory space in our app higher and higher and I\'m trying to find out if we have a leak of some sort eating into the permgen area.We don\'t do hot undeploy/redeploy act
This question already has answers here: Closed 11 years ago. 开发者_如何学C Possible Duplicate: Java - tell if a String is interned?
I constantly detect OOM in PermGen for my environment: java 6 jboss-4.2.3 Not a big web-application I know about String.intern() problem - but I don\'t have enough valuable usage of it.
I\'m meeting the dreadful PermGen:Out of memory error when deploying a web-app on TomCat. I have tried many possible solutions, but they don\'t work out(sometimes it works, usual开发者_运维百科ly it d
I\'m new to Cojure, but I read that when using AOT compilation a class is generated for each function. Wouldn\'t that mean a whole lot of cl开发者_运维技巧asses that consume perm-gen space? Aren\'t th
Are inner classes more lightweight than normal classes, or in the end java compiles inner classes just like normal classes?