AdvancedVocabulary#algorithms#backend#developer-tools

Generational Garbage Collection Vocabulary

Learn the vocabulary of segregating objects by age so short-lived garbage is reclaimed cheaply without rescanning long-lived data.

0 / 5 completed
1 / 5
A teammate explains that a garbage collector segregates objects by age into separate regions, scanning the region holding newly allocated objects far more often than the region holding long-lived objects, because most objects die young. What garbage collection strategy is being described?