Java Garbage Collection algorithms

Content:

Original link: Playing with different Java JVM Garbage Collection Algorithms / LinkedIn.

Most languages use garbage collection today.

Everybody knows that GC is great for throughput, but bad for real time characteristics due to the infamous pauses.

Surprisingly it is almost only Java that experiement with different GC algorithsm with different behavior.

Here is a comparsion of G1, CMS, serial and ZGC garbage collectors for Java.

Comments: