Is there a GC in Java that does not introduce latency (stop-the-world) by perhaps running 100% concurrently?
问题 Just curious. I heard something about the new G1GC addressing that latency problem. I can't / don't want to use RTSJ. Thanks in advance 回答1: I don't think there are any zero-pause garbage collectors. But generally speaking a low-pause collector like CMS will do the job. The problems with pauses and pause reduction are as follows: A zero-pause (or almost zero-pause) collection regime significantly increases overheads for normal program execution. This is particularly true with multithreaded