Performance Engineering Training – By RadhaKrishna Prasad

Garbage Collection Session 2 - By RK

Trainer Details: LinkedIn: https://www.linkedin.com/in/radhakrishna-prasad-b757b4b0/ Dzone: https://dzone.com/users/3746148/radhakrishnaggr.html  What You Will Learn: Following topics will be covered in the training Performance Testing Concepts Performance Engineering Concepts Performance Monitoring/Profiling of Web, App and DB Servers Java Performance Engineering and Tuning Heap Dump, Thread Dump and GC Analysis .net Performance Engineering and Tuning Real-Time Application Performance Issues with Example Database Performance … Read more

Type of Garbage Collector

Garbage Collector Type

Before discussing the type of garbage collector, it is important to understand some basic terms related to it. Stop the World Event: It is a time when all the application threads are stopped until the garbage collection operation completes. Both minor and major garbage collections are “Stop the World” events. -Xms: This command-line argument specifies the initial heap … Read more

How does Garbage Collector work?

How does GC work, Minor GC, Major GC, Full GC

A Garbage Collector is a Java program which tracked the referenced (live) objects and allowed them to keep in the heap memory whereas the memory of the unreferenced (dead) objects is reclaimed and reused for future object allocation. To understand it more practically we have to take some pictorial examples of JVM object creation and management cycle. Let’s … Read more

Garbage Collection – Overview

A Garbage Collector is a Java program which tracked the referenced (live) objects and allowed them to keep in the heap memory whereas the memory of the unreferenced (dead) objects is reclaimed and reused for future object allocation. This method of reclaiming the unused memory is known as Garbage Collection. In Garbage collection, neither the explicit deletion … Read more