A lot of JVM's command line arguments dealing with the garbage collector have "CMS" prepended to them. What does this stand for?
+8
A:
(Or as Tom mentions in the comments, mostly Concurrent Mark Sweep.)
Jon Skeet
2009-04-17 18:16:10
Or "(mostly) Concurrent Mark Sweep".
Tom Hawtin - tackline
2009-04-17 18:23:40
+6
A:
It's a method or algorithm for garbage collection that, in theory, affects the performance of the application less than the older methods.
The concurrent mark sweep collector, also known as the concurrent collector or CMS, is targeted at applications that are sensitive to garbage collection pauses. It performs most garbage collection activity concurrently, i.e., while the application threads are running, to keep garbage collection-induced pauses short
G1 is the next level being considered/developed.
Adam Davis
2009-04-17 18:18:26
+1
A:
Refer https://java.sun.com/j2se/reference/whitepapers/memorymanagement_whitepaper.pdf for more details....
Dipak Bhimani
2010-01-03 09:35:36