When I am printing the details of garbage collection using GarbageCollectorMXBean the output shows me the following information:-
Name: PS ScavengeCollection
count: 72
Collection time: 3041
Memory Pools: PS Eden Space PS Survivor Space
Name: PS MarkSweepCollection
count: 5
Collection time: 4922
Memory Pools: PS Eden Space PS Survivor Space PS Old Gen
Now quite rightly the ScavengeCollection and MarkSweep collection covers 4 of the 5 available memory pool excluding
Code Cache (Non Heap Memory).
I want to know why the Garbage Collection never ran for
Code Cache Memory Pool managed by CodeCacheManager Memory Pool.
Does it imply that GC never garbage collect objects from CodeCacheManager Memory Pool??
Is there any significance of the same?