mbien commented on PR #5909: URL: https://github.com/apache/netbeans/pull/5909#issuecomment-1532185993
+1 for using a non-concurrent parallel GC, this is usually the right choice for throughput maximizing background processes. `-XX:GCTimeRatio=4` will allow the JVM to use up to 20% of the execution time for GC (`1/(1+N)`). I suppose this is done to reduce shrink/grow hysteresis. Worth keeping an eye on it to check if this is causing any trouble. Memory on the client is cheap. In the cloud it depends on what service you are running on. Some give you memory on a per-core basis etc. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
