How to Tune a Java Virtual Machine (JVM)
The Java Virtual Machine (JVM) runs your Java programs. Sometimes the default configuration that the JVM comes with may not be the most efficient for your program.
In such a case, you need to tune the JVM to improve its performance. You can adjust the default parameters until you achieve the desired performance for your application.
There are three types of command line options that you can use when tuning your JVM.
Standard options
Standard options come with every JVM compiler. You can use them to perform actions like setting classpath or checking your JRE version. These options begin with a dash ( - ) prefix and end with the option name.
For example, to check your JRE version, enter the following command line:
java -version
Non-standard options
The non-standard options are specific to your JVM implementation. The most common implementation is the Hotspot JVM, which you probably already have installed on your computer.
Non-standard options start with -X. Unlike standard options, you can do a lot more with non-standard options.
These options allow you to set parameters to increase heap memory, nursery size or garbage collector type. This is where most of the performance tuning takes place.
For example, to set the minimum heap memory for your application to 1GB and the maximum to 3GB, use the command below:
java -Xms1g -Xmx3g JavaClass
Advanced options
You can use advanced options to control actions at the system level. In general, you should not use these options unless you have a deep understanding of your system.
It is also important to note that these options are subject to change at any time without notice. You can track the changes made to the HotSpot JVM through the Oracle documentation.
Advanced options start with -XX. Like non-standard options, they are not guaranteed to be available in all JVM implementations. The syntax of these options is similar to that of the non-standard options.
For example, to set the maximum metaspace size to 85004KB, use the following command:
java -XX:MaxMetaspaceSize=85004k JavaClass
Many options to tweak the JVM
You can tune your JVM with several types of options. But there are many options available to control various low-level settings.
You can check the available options by running java -X or you can check the Oracle documentation for more details.
You should read it
- Error Could not create the Java Virtual Machine when running Minecraft
- What is Java? Why choose Java?
- Basic Java syntax
- Apple is about to update Java for Mac computers
- Download and install Java on the computer
- What is JAVA file? How to open, edit and convert JAVA files
- eQuiz - Multiple choice quiz about JAVA
- Basic Java exercises, with sample decoding
- Which career Java programming options are waiting for you?
- How to install Java on a Raspberry Pi
- How to fix the error does not install Java
- 9 things Java programmers should know in 2018 if they want a successful career
Maybe you are interested
Thousands of iOS apps could be at risk because of an open source vulnerability How to fix the error that the printer driver cannot be installed in kernel-mode The strange forest area looks like a chessboard when viewed from above Impressive image: ISS International Space Station flies over the Sun. Russian spacecraft 'resupply' successfully 3 tons of cargo for the ISS in just 3 hours How clean are astronauts keeping the space station?