Hi,<br><br>I'd like to have this patch<br><br>  <a href="http://cr.openjdk.java.net/~rasbold/69XXXXX/webrev.00/">http://cr.openjdk.java.net/~rasbold/69XXXXX/webrev.00/</a><br><br> contributed, if appropriate.<br><br>It implements a simple heap shrinking logic based on the free ratio (MaxHeapFreeRatio) in the parallel collector. The way it works is the following: If the free ratio, (1.0 - <used> / <capacity>) * 100 > MaxHeapFreeRatio, this logic kicks in. Otherwise, the (default) adaptive size policy runs the show (as before). This feature is turned off by default. There are two new flags to turn it on:<br>
<br>  UseFreeRatioForParallelGC - this enables it.<br>  UseFreeRatioOnlyInSystemGCForParallelGC - this enables it only in explicit System.gc() calls. This is more useful in apps that call System.gc() when it's idle and don't want shrinking to happen at all other times.<br>
<br>In our tests, it appears to work well in a simple test and to help a real app reduce its footprint (RSS) when it's idle.<br><br>Thanks to Chuck Rasbold who uploaded the webrev on my behalf.<br><br>Thanks,<br>Hiroshi<br>
<br>