Ruby manages memory automatically via a garbage collector (GC) that reclaims objects no longer referenced. Modern Ruby (MRI) uses a generational, incremental mark-and-sweep collector with compaction. Understanding it helps with performance and diagnosing memory issues in long-running applications.
Automatic garbage collection
Ruby allocates objects on the heap; the GC reclaims those that are no longer REACHABLE
(referenced). You never free memory manually.
Modern MRI GC characteristics:
✓ Mark-and-sweep — marks reachable objects (from roots), sweeps unreachable ones
✓ Generational (since Ruby 2.1) — new objects collected often, old ones rarely
(based on "most objects die young")
✓ Incremental — spreads GC work to reduce pause times
✓ Compacting (GC.compact, Ruby 2.7+) — reduces memory fragmentation
