Sizing the Heap -XmsN -XmxN Summary The JVM will attempt to find a reasonable minimum and maximum heap size based on the machine it is running on. Unless the application needs a larger heap than the default, consider tuning the performance goals of a…
第二章 Ergonomics Ergonomics is the process by which the Java Virtual Machine (JVM) and garbage collection tuning, such as behavior-based tuning, improve application performance. The JVM provides platform-dependent default selections for the garbage col…
第三章 Generations One strength of the Java SE platform is that it shields the developer from the complexity of memory allocation and garbage collection. However, when garbage collection is the principal bottleneck, it is useful to understand some aspec…
原文地址:https://blogs.oracle.com/poonam/entry/understanding_cms_gc_logs Understanding CMS GC Logs By Poonam-Oracle on Mar 23, 2006 CMS GC with -XX:+PrintGCDetails and -XX:+PrintGCTimeStamps prints a lot of information. Understanding this information can…