Server memory management

Java provides platform-side memory management that significantly simplifies coding. The JVM (Java Virtual Machine) periodically identifies unused objects and reclaims associated memory. In general, computer science calls this term garbage collection. Garbage collection can have a significant impact on server performance.

This topic describes Java platform garbage collection analysis.