What does PermGen actually stand for?

前端 未结 8 1557
囚心锁ツ
囚心锁ツ 2020-11-28 03:33

I know what PermGen is, what it\'s used for, why it fails, how to increase it etc.

What I don\'t know is what PermGen actually stands for. Permanent... Gen... someth

相关标签:
8条回答
  • 2020-11-28 04:33

    Permanent Generation. See the java GC tuning guide for more details on the garbage collector.

    0 讨论(0)
  • 2020-11-28 04:34

    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.

    0 讨论(0)
提交回复
热议问题