Ruby hanterar minne automatiskt via en skräpsamlare (GC) som återtar objekt som inte längre refereras. Modern Ruby (MRI) använder en generationell, inkrementell mark-and-sweep-samlare med komprimering. Förståelse för detta hjälper med prestanda och diagnostisering av minnesproblem i långkörande applikationer.
Automatisk skräpinsamling
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
