Java Garbage Collection

Tuning the garbage collector is the most important thing that can be done to improve the performance of a Java application. GC is typically caused when the JVM decides GC is necessary, specifically when: OpenJDK has three collectors suitable for production, with different performance characteristics. In order to study the GC behaviours in application, it … Read moreJava Garbage Collection