Last active
December 15, 2015 05:49
-
-
Save kirkch/5211438 to your computer and use it in GitHub Desktop.
Useful JVM Settings (Oracle VM)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Native Compilation Options | |
----------------------- | |
XX:+PrintCompilation Prints out when HotSpot stops the world to compile a method into native code | |
-XX:CompileThreshold=1000 Sets the number of invocations required before a method will be considered for compilation. | |
Trades off startup time and resources for speed. -client sets this to 1500, -server runs with 10,000 | |
(http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment