LoadRunner Scripting Standards

Working on LoadRunner is one thing, but doing quality work is another important thing which is possible only by following the LoadRunner scripting standards. Many performance testers are LoadRunner experts but still lack scripting quality. This article will help you understand the LoadRunner Scripting Standards. Naming Convention: Script Name If your project follows releases or … Read more

Parallel Garbage Collector (GC)

The Parallel Garbage Collector (GC) or Throughput Collector is the default garbage collector used by JVM. The parallel garbage collector works the same as the serial garbage collector. The only difference between serial and parallel garbage collectors is that serial garbage collector uses a single thread for the garbage collection process while parallel garbage collector uses multiple threads for … Read more

Parallel Garbage Collector

Parallel Garbage Collector (Parallel GC) is a Java GC algorithm designed to speed up memory cleaning by using multiple threads. Unlike Serial GC, which pauses everything and works single-threaded, Parallel GC divides the work across threads to shorten pause times. It focuses on high throughput, making it suitable for apps that can tolerate occasional pauses … Read more

Serial Garbage Collector (GC)

Serial Garbage Collector or Serial GC is the most basic garbage collection (GC) algorithm used in Java. It works in a single-threaded way, meaning it uses one thread to perform all garbage collection tasks. During a GC event, your application pauses completely—this is called a stop-the-world pause. Although Serial GC causes these pauses, it’s still … Read more

Garbage Collection Quick Guide

Garbage Collection Quick Guide

Present you the Garbage Collection Quick Guide: Garbage Collection Basics: Garbage Collection Activities: Performance Metrics targeted by GC algorithms Type of Garbage Collector: Comparison GC Throughput Latency Memory Footprint Serial Low High Low Parallel High Medium Medium CMS Medium Medium Medium G1 High Low Medium Z High Very Low High Shenandoah High Very Low High … Read more