Type of Garbage Collector

Garbage Collector Type

Before discussing the type of garbage collector, it is important to understand some basic terms related to it. Type of Garbage Collector: 1. Serial GC: Serial GC is designed for single-threaded environments. It uses just a single thread for garbage collection. As a result, this GC implementation freezes all application threads when it runs. This leads … Read more