AdvancedVocabulary#algorithms#backend#distributed-systems

LSM Tree Vocabulary

Build fluency in the vocabulary of buffering writes in memory and flushing them as immutable sorted files merged later.

0 / 5 completed
1 / 5
A teammate explains that a storage engine buffers writes in an in-memory sorted structure, periodically flushes it to disk as an immutable sorted file, and later merges those files in the background, so writes stay sequential and fast even though reads may need to check several files. What data structure is being described?