InterviewSolution
| 1. |
What Is Metaspace ? |
|
Answer» The Permanent Generation (PermGen) space has completely been removed and is kind of REPLACED by a new space called Metaspace. The consequences of the PermGen removal is that obviously the PermSize and MaxPermSize JVM arguments are IGNORED and you will NEVER get a java.lang.OutOfMemoryError: PermGen ERROR. The Permanent Generation (PermGen) space has completely been removed and is kind of replaced by a new space called Metaspace. The consequences of the PermGen removal is that obviously the PermSize and MaxPermSize JVM arguments are ignored and you will never get a java.lang.OutOfMemoryError: PermGen error. |
|