what is the meaning of these 2 lines in below Batch and Iterative modes of garbage collection
Batch: This mode is designed for maximum throughput at the expense of responsiveness.
Iterative: This mode balances responsiveness with throughput.
Batch:
Disables garbage collection concurrency and reclaims objects in a batch call. This is the most intrusive mode.
This mode is designed for maximum throughput at the expense of responsiveness.
This mode overrides the
This is the only valid mode for the server garbage collector. It is equivalent to garbage collection on a workstation that is not concurrent.
Interactive:
The default latency mode. Enables garbage collection concurrency and reclaims objects while the application is running. This is the default mode for garbage collection on a workstation and is less intrusive.
This mode balances responsiveness with throughput.
This mode is equivalent to garbage collection on a workstation that is concurrent.
This mode is not available on the server garbage collector.
Vahaj uddinPosted Oct 26, 2011, 8:56 AM
VulpesPosted Oct 26, 2011, 7:59 AM