Jonathan Love

Search IconIcon to open search

Tracing GC

A Garbage Collection strategy to trace which objects (ares of memory) are still reachable from certain other objects. If an object is no longer considered accessible, it is “collected” (freed)

It covers a wide range of implementations across a few different algorithms

Tracing requires a runtime approach to memory monitoring, making it useful only to languages that use an Interpreter


Interactive Graph