So I've got a pretty standard spring, hibernate, tomcat environment.. yet I'm getting permgens locally and on CI.

I know there is a TEMPORARY fix (i.e. increasing the memory assigned to permgen) but this still is only temporary. I'd rather not imagine what a production environment looks like given what I'm seeing.

(a bit of a comparison question) In .NET I have not seen anything similar. Does .NET have its version of permgen?

(in case you do not know what permgen is Significance of PermGen Space )

link|improve this question

1  
You are running spring, hibernate and Tomcat...with C#? I am confused. – aquinas Nov 15 '11 at 20:43
2  
It would not be a c# thing it would be a clr thing. c# is just a language – Ben Robinson Nov 15 '11 at 20:43
I've updated the question. – user48545 Nov 15 '11 at 21:03
2  
You could describe a bit more what the permgen is, and its properties. And not sure how your second paragraph relates to the rest. And what are you interested in? – CodeInChaos Nov 15 '11 at 21:06
1  
If you don't know what permgen is see this stackoverflow.com/questions/2238522/… – user48545 Nov 15 '11 at 21:08
feedback

2 Answers

up vote 1 down vote accepted

No, the CLR (C# is "just" a CLR language) does not have a permanent generation, see Fundamentals of Garbage Collection.

Btw, future versions of the JVM - currently expected at the latest for Java 8 - won't have permgen either (see Oracle discusses Java 7 & 8 new features on video) (basically as a result of "merging" the "classic" Sun HotSpot VM that has permgen and JRockit JVM).

link|improve this answer
thanks for the btw – user48545 Nov 15 '11 at 21:13
feedback

There is no such thing in the CLR. Just a ordinary heap. The garbage collector (GC) is generational, with three generations. One for young objects, one for long living and one for very long living objects. There is also a lage object heap (LOH). The GC treats the LOH a bit differently in order to increase efficiency. See Large Object Heap Uncovered

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.