+1 vote
in JAVA by
The difference between Serial and Parallel Garbage Collector?

1 Answer

0 votes
by

Even though both the serial and parallel collectors cause a stop-the-world pause during Garbage collection. The main difference between them is that a serial collector is a default copying collector which uses only one GC thread for garbage collection while a parallel collector uses multiple GC threads for garbage collection.

Related questions

0 votes
asked Apr 27, 2020 in IONIC by SakshiSharma
+1 vote
asked May 5, 2021 in JAVA by SakshiSharma
...