Skip to content
Garbage Collection Latency

Garbage Collector Latency

As you know the Garbage Collection shouldn’t happen too soon or too late, because in both cases the performance of the system gets affected. A delay in GC cycles results in memory leakage, whereas too… Garbage Collector Latency

Garbage Collector Type

Types of Garbage Collectors

Before diving into the different types of garbage collectors, it’s important to understand some basic terms: 1. Serial Garbage Collector (Serial GC) Overview: Behavior: Performance Characteristics: JVM Argument: -XX:+UseSerialGC Recommended Use Cases: Limitations: 2. Parallel… Types of Garbage Collectors

Memory Heap

What is Memory Heap? The heap is a special area in a computer’s memory used by programs to store data while the program is running. When a program creates something new (like a text message,… Memory Heap