What is the difference between Serial and Throughput Garbage collector ?
3 years ago
OOP Java
The throughput garbage collector uses a parallel version of the young generation collector and is meant to be used with applica- tions that have medium to large data sets. On the other hand, the serial collector is usually adequate for most small applications (those requiring heaps of up to approximately 100MB on modern processors).

Surya Bikram Bhandari
Oct 31, 2021