您的位置:首页 > 其它

你假笨JVM参数 - 004 MaxTenuringThreshold

2017-07-21 22:23 309 查看
你假笨JVM参数分享全整理系列
微信小程序:JVMPocket - JVM参数交流平台,Javaer的神奇口袋

序号:004
时间:2017-07-21
参数:-XX:MaxTenuringThreshold
含义:
Sets the maximum tenuring threshold for use in adaptive GC sizing.
The largest value is 15.
The default value is 15 for the parallel (throughput) collector, and 6 for the CMS collector.
在可自动调整对象晋升老年代年龄阈值的GC中,该参数用于设置上述年龄阈值的最大值
参数值最大为15
Parallel Scavenge中默认值为15,CMS中默认值为6,G1中默认值为15
默认值:



举例:
-XX:MaxTenuringThreshold=8
相关文章:
Java Platform, Standard Edition Tools Reference
Garbage First (G1) Garbage Collection Options
分享记录:







内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  jvm参数 jvm