Garbage Collection
Java Garbage Collection (GC) Cheatsheet Garbage Collection (GC) in Java is an automatic memory management process that helps reclaim memory used by objects that are no longer referenced. The JVM…
Java Garbage Collection (GC) Cheatsheet Garbage Collection (GC) in Java is an automatic memory management process that helps reclaim memory used by objects that are no longer referenced. The JVM…
Here’s a quick cheat sheet on JVM internals, highlighting key concepts and components that are useful for understanding how the JVM works under the hood: 1. Java Virtual Machine Overview…
Types Serial GC Parellel GC G1 GC- Available from Java 8+ Shenandoah GC - Available from Java 11+ Zero GC - ZGC - Available from Java 17+ ZGC Generational -…