Java Garbage Collection Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 9: Line 9:
{{External|https://dzone.com/articles/java-8-permgen-metaspace}}
{{External|https://dzone.com/articles/java-8-permgen-metaspace}}


The ''meatspace'' has been introduced by Java 8 and replaces the [[#Permanent_Generation|permanent generation]]. Most allocations for the class metadata are now allocated out of native memory
The ''meatspace'' has been introduced by Java 8 to replace [[#Permanent_Generation|permanent generation]]. Most allocations for the class metadata are now allocated out of native memory.
 
 


<font color=red>It is considered part of the heap?</font>
<font color=red>It is considered part of the heap?</font>

Revision as of 07:36, 16 February 2017

Internal

Permanent Generation

Metaspace

https://dzone.com/articles/java-8-permgen-metaspace

The meatspace has been introduced by Java 8 to replace permanent generation. Most allocations for the class metadata are now allocated out of native memory.


It is considered part of the heap?