Search

GC easy – Universal Java GC Log Analyser

Tag

GC,

Java Heap, Stack, GC: What You Need To Know

The post explores the Java Virtual Machine (JVM) and its internal components, focusing on the Heap, Stack, and Garbage Collection (GC). It explains their functions, configuration, and common errors. Additionally, it outlines JVM memory regions and emphasizes the significance of choosing the right GC algorithm to optimize application performance.

AM I READING GC LOGS CORRECTLY? – JAVAONE TALK

Ram presented on Garbage Collection Logs at JavaOne, discussing insights and techniques that can enhance understanding of GC logs. The presentation aims to help developers effectively interpret these logs to optimize Java applications. Details can be found in the provided slideshare link.

QUESTIONING STATUS QUO – ‘SERIAL GC NOT FOR SERIOUS APPLICATIONS’

This study challenges the notion that Serial GC is unsuitable for serious applications by comparing it to G1 GC in a real production environment. Results showed comparable throughput and better latency for Serial GC. The findings suggest that with careful tuning, Serial GC can perform effectively in production settings, questioning established beliefs.

A CASE STUDY: DIFFERENT GC ALGORITHMS BEHAVIOR IN PRODUCTION

On a major B2B application different GC algorithms behaviors were studied. This application is basically a web service provider servicing SOAP and REST requests from its clients.

WHICH GC TO USE?

This article aims to summarize the advantages and disadvantages of various garbage collection (GC) algorithms in a single slide. It compiles information from multiple blogs and articles discussing the intricacies, benefits, and drawbacks of each algorithm, providing a concise overview for readers seeking quick insights on GC options.

JBOSS SHUNNING, UNLOADING CLASS SUN.REFLECT

I had this interesting problem with a major shipping/logistics company. Their application was running on Java 6, JBoss Cluster in RedHat Linux platform.

Up ↑