Hacker News new | ask | show | jobs
by mcguire 3324 days ago
Arenas are probably the fastest memory management technique this side of fixed allocation and stacks.

If the lifetime of the objects is contained within the lifetime of the arena. If not, you have to copy live objects out before you destroy the arena, at which point you are implementing a n-space moving collector.