About 363,000 results
Open links in new tab
  1. What is an object graph in the Java garbage collector?

    Jan 12, 2010 · An object graph is some graph whose nodes are objects, and whose edges are relationship of interest between the objects. In the case of the Java garbage collector, the object graph of concern is the graph of reachable objects.

  2. java - Why does heap memory usage graph look like this ... - Stack Overflow

    Dec 12, 2017 · The large-scale sawtooth pattern represents the memory utilization between GC cycles. The application is allocating objects steadily (the upsloping line) until the heap gets full enough for the VM to decide to run the GC (the point).

  3. Garbage Collection Patterns to predict outages - GC easy

    Oct 15, 2021 · Automatic Garbage Collection in Java enhances application performance by providing insights through GC Logs. These logs reveal vital details about each GC event, aiding optimization and debugging. Various GC algorithms exist, each with distinct log formats.

  4. Interesting Garbage Collection Patterns | by Ram Lakshmanan

    Oct 26, 2021 · In this post, let me share few interesting Garbage collection patterns that have intrigued me. 1. Healthy saw-tooth pattern. You will see a beautiful saw-tooth GC pattern when an...

  5. java - Why a sawtooth shaped graph? - Stack Overflow

    Aug 28, 2011 · The garbage collection is about objects, not variables. Further, it’s worth noting that this pattern is not specific to the young generation, but will occur every time you have multiple allocations but a single freeing operation.

  6. 9 Patterns and Coding Styles That Impact Java GC Performance

    Nov 1, 2024 · When building low-latency Java applications, understanding how coding choices impact garbage collection (GC) behaviour is crucial. Certain patterns and coding styles can inadvertently...

  7. JVM Garbage Collection and Optimizations - Java Code Geeks

    May 1, 2020 · Garbage collection is done by a daemon thread called ‘Garbage Collector’ which directs the objects through different spaces within the heap. Garbage Collection is done in 3 steps.

  8. Garbage Collection in Java - GeeksforGeeks

    Apr 8, 2025 · There are generally four ways to make an object eligible for garbage collection. Nullifying the reference variable (obj = null). Re-assigning the reference variable (obj = new Object ()). An object created inside the method (eligible after method execution).

    Missing:

    • Graph Pattern

    Must include:

  9. Understanding Java Garbage Collectors: A Comprehensive Guide

    Garbage collection in Java is an automatic memory management process that helps reclaim memory that is no longer in use. This allows developers to focus more on writing code rather than dealing with memory allocation and deallocation explicitly.

  10. What Is Garbage Collection in Java: A Comprehensive Guide

    Garbage collection is a vital aspect of Java programming that ensures efficient memory management in applications. This guide aims to provide an in-depth understanding of garbage collection, its processes, and its implications for performance and optimization.

  11. Some results have been removed
Refresh