About This Book

This section provides some detailed information about this book - Java GC Tutorials - Herong's Tutorial Examples.

Title: Java GC Tutorials - Herong's Tutorial Examples

Author: Dr. Herong Yang - Contact by email via herong_yang@yahoo.com.

Category: COMPUTERS / Programming Languages / Java

Version/Edition: v1.11, 2022

Number of pages in PDF format: 517

Description: This book is a collection of tutorial notes and sample codes written by the author while he was learning JVM GC (Garbage Collection) processes. Topics include Java Garbage Collectors, STW (Stop-The-World), Serial Collector, Parallel Collector, Concurrent Collector, G1 Collector, ZGC Collector, GC Algorithms, Generational GC, Regional GC, Heap Memory Management, Young/New Generation, Tenured/Old Generation, Object Reference, Eden Space, Survivor Spaces, Minor GC, Major GC, Full GC, Performance Tuning, Throughput/Latency Performance, Heap Footprint. Updated in 2022 (Version v1.11) with JVM 17.

Keywords: Java, Virtual, Machine, JVM, GC, Garbage Collection

Copyright:

Revision history:

Web version: https://www.herongyang.com/Java-GC - Provides free sample chapters, latest updates and readers' comments. The Web version of this book has been viewed a total of:

PDF/EPUB version: https://www.herongyang.com/Java-GC/PDF-Full-Version.html - Provides information on how to obtain the full version of this book in PDF, EPUB, or other format.

Table of Contents

About This Book

 Heap Memory Area and Size Control

 JVM Garbage Collection Logging

 Introduction of Garbage Collectors

 Serial Collector - "+XX:+UseSerialGC"

 Parallel Collector - "+XX:+UseParallelGC"

 Concurrent Mark-Sweep (CMS) Collector - "+XX:+UseConcMarkSweepGC"

 Garbage First (G1) Collector - "+XX:+UseG1GC"

 The Z Garbage Collector (ZGC) - "+XX:+UseZGC"

 Object References and Garbage Collection

 Garbage Collection Performance Test Program

 Performance Tests on Serial Collector

 Performance Tests on Parallel collector

 Performance Tests on Concurrent collector

 Performance Tests on G1 collector

 Garbage Collection Performance Test Summary

 References

 Full Version in PDF/EPUB