-
Core Java
GC Explained: Collectors Overview
The current version of HotSpot JVM includes three types of garbage collectors: – Serial Collector – Parallel Collector – The…
Read More » -
Core Java
GC Explained: Heap
Generational Garbage Collectors JVM heap is divided into two different Generations. One is called Young and the second one is…
Read More » -
Core Java
What causes OutOfMemoryError?
OutOfMemoryError might be thrown when one of the following circumstances occurs: JVM run out of native memory Java heap is…
Read More » -
Core Java
Safepoints
Safepoints There are two logical groups of threads in Java application: application threads performing application logic threads performing GC When…
Read More »