Skip to content

Blog

Parallel Garbage Collector

Parallel Garbage Collector (Parallel GC) is a Java GC algorithm designed to speed up memory cleaning by using multiple threads. Unlike Serial GC, which pauses everything and works single-threaded, Parallel GC divides the work across… Parallel Garbage Collector

Garbage Collection Quick Guide

Garbage Collection Quick Guide

Present you the Garbage Collection Quick Guide: Garbage Collection Basics: Garbage Collection Activities: Performance Metrics targeted by GC algorithms Type of Garbage Collector: Comparison GC Throughput Latency Memory Footprint Serial Low High Low Parallel High… Garbage Collection Quick Guide