java虚拟机内存设置_java虚拟机的内存设置(Memory settings for the Java virtual machine).doc...

java虚拟机的内存设置(Memory settings for the Java virtual machine)

java虚拟机的内存设置(Memory settings for the Java virtual machine)

Memory settings for the Java virtual machine

Basic concept:

PermGen space: the full name is Permanent Generation space., that is, the permanent storage area used to store Class and Meta information, and Class is placed into the area when it is Load

Heap space: store Instance.

GC (Garbage Collection) should not clean PermGen space

So if your APP will be a lot of CLASS, PermGen space errors are most likely to happen to you, LOAD

Java Heap is divided into 3 areas

1.Young

2.Old

3.Permanent

Young saves objects that have just been instantiated. When the area is filled, GC moves the object to the Old area. The Permanent section is responsible for saving reflection objects, and this area is not discussed in this article.

The Heap allocation of JVM can be set using the -X parameter,

-Xms

Initial Heap size

-Xmx

Java heap maximum

-Xmn

Heap generation size of young

JVM has 2 GC threads

The first thread is responsible for retrieving the Young zone of the Heap

The second thread, when Heap is insufficient, traverses the Heap and upgrades the Young zone to the Older zone

The size of the Older zone is equal to -Xmx minus -Xmn, and the value of the -Xms cannot be set too large because the second threads are forced to run, which reduces the performance of the JVM.

Why do some programs happen frequently, GC?

For the following reasons:

1., System.gc () or Runtime.gc () is invoked within the program.

2. some middleware software calls its own GC method, which needs to set parameters to prohibit these GC.

The Heap of 3.Java is too small, and generally the default Heap values are small.

4. frequently instantiate objects, Release objects, at this point to save and reuse objects, such as using StringBuffer () and String ().

If you find that the remaining space of Heap will be 50% of the total space after each GC, this means that your Heap is in a healthy state

Many Server side Java programs are best to have 65% of the space left after

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值