Skip to content

Best Practices for JMeter Test Execution

Apache JMeter is an open-source tool which is widely used for Performance Testing. The test execution through the JMeter tool is an easy task, but the execution steps also have some best practices to avoid… 

Performance Bottlenecks Debugging

After getting the issues during the performance testing, we would require an approach for debugging the Performance Bottlenecks. Debugging a web application that crashes under high load necessitates a methodical approach to finding and fixing… 

Garbage Collection Latency

Garbage Collector Latency

As you know the Garbage Collection shouldn’t happen too soon or too late, because in both cases the performance of the system gets affected. A delay in GC cycles results in memory leakage, whereas too… 

Performance Testing & Engineering Interview Questions

Performance Testing & Engineering Interview Questions

These Performance Testing and Engineering Interview Questions may act as a booster for a fresher to grab quickly the basic understanding of performance testing, testing tools and engineering concepts. For an experienced performance tester or… 

GC time ratio Calculator

GC Time Ratio Calculator

The Parallel Garbage Collector or Throughput Collector has an argument to set the target application throughput. The argument is: -XX:GCTimeRatio=<N> To set the target throughput, you need to calculate the correct GC Time Ratio value… 

Throughput in Garbage Collection

Throughput in Garbage Collection

When it comes to the memory management of a software application, garbage collection is crucial. Actually, the memory of unused or unreferenced objects is recovered by a Java program called Garbage Collector. It means that,…