Aman Tandon
Aman Tandon

Reputation: 1509

Collection type of GC in Oracle or OpenJDK is precise or conservative?

I need to know what type of collector does GC of Oracle and OpenJDK uses, is it precise collector or conservative collector?

Upvotes: 1

Views: 156

Answers (1)

Chris Bailey
Chris Bailey

Reputation: 292

The HotSpot JVM implements type-accurate garbage collection - as does the IBM JVM.

Upvotes: 2

Related Questions