Selecting a Garbage Collector in Java
From Java 5 onwards an improvement is made in Java by selecting the Garbage Collector (GC) based on the class of the machine on which the application is run. Serial Collector The serial collector uses a single thread to perform all garbage collection work, which makes it relatively efficient since there is no communication overhead… Read More Selecting a Garbage Collector in Java