Software Engineering KB

Home

❯

02 Programming Languages and Paradigms

❯

03 Memory Models

❯

00 Category

❯

Garbage Collection (GC)

Garbage Collection (GC)

Feb 10, 20261 min read

  • memory-models
  • garbage-collection

Garbage Collection (GC)

Back: Memory Models

Automatic memory management that reclaims memory no longer in use by the program. Different GC algorithms offer tradeoffs between throughput, latency (pause times), memory overhead, and implementation complexity.

Concepts

  • Mark-and-Sweep
  • Generational GC
  • Concurrent GC
  • Reference Counting
  • Cycle Detection
  • GC Tuning

memory-models garbage-collection


Graph View

  • Garbage Collection (GC)
  • Concepts

Backlinks

  • Concurrent GC
  • Cycle Detection (Memory)
  • GC Tuning
  • Generational GC
  • Mark-and-Sweep
  • Reference Counting
  • Memory Models

Created with Quartz v4.5.2 © 2026

  • GitHub