jvm performance - animeshtrivedi/notes GitHub Wiki
JVM performance optimization notes
https://jakubstransky.com/category/java/
Details of JVM specific performance/debugging setting
Oracle JVM tools
https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/toc.html
jcmd
utility
https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/tooldescr006.html
JVM options
http://www.oracle.com/technetwork/articles/java/vmoptions-jsp-140102.html
-XX:MaxInlineSize=35
To disable everything
-XX:InlineSmallCode=0 -XX:MaxInlineSize=0 -XX:FreqInlineSize=0
XX:CompileThreshold
This makes JVM to compile the class at certain access frequency. 1 means the first time.
-XX:CompileThreshold=1
https://stackoverflow.com/questions/1481853/technique-or-utility-to-minimize-java-warm-up-time