Hacker News new | ask | show | jobs
by tybit 561 days ago
Runtimes with garbage collectors typically optimize for allocation, not deletion.
1 comments

Generational GC optimizes for both. They assume that most objects die young, so choose to relocate live objects and just mark the entire region that was evacuated as empty. So this is a very efficient way to delete data.