In general ( as I am aware that there is a standard JVM implementation from Oracle/sun and other third parties as well like MS) , Does JVM create only one Garbage collection thread running as daemon to collect the garbage objects OR does JVM spawn more than one thread to accomplish the Garbage collection?
|
|
The "throughput collector" which is enabled with Only the rarely used single threaded gc http://www.oracle.com/technetwork/java/gc-tuning-5-138395.html http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html |
|||
|
|
|
-XX:ConcGCThreads=n -- Number of threads concurrent garbage collectors will use. The default value varies with the platform on which the JVM is running. http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html#G1Options There could be more garbage collector threads but you should not rely on their number, running sequence or anything. There are essential things however, you can rely on. for example: Object.finalize() will be called once and only once. Also check out Tuning garbage collector, about the question: |
|||
|
|