Significance of PermGen Space

后端 未结 4 1637
攒了一身酷
攒了一身酷 2020-12-24 13:44

What is the significance of PermGen space in java?

4条回答
  •  再見小時候
    2020-12-24 13:49

    The only thing you really need to know is that PermGen space is separate from the general heap and not affected by the -Xmx VM parameter. If you have an application that loads lots of class definitions (like an application server or an IDE) then you can set the PermGen space size using the -XX:MaxPermSize VM option.

提交回复
热议问题