Memtable
Everything on SkillVeris tagged Memtable — collected across the glossary, study notes, blog, and cheat sheets.
2 resources across 1 library
Interview Questions(2)
How Does a Write-Ahead Log Relate to an LSM-Tree?
A write-ahead log provides crash durability for a single write, while an LSM-tree is the broader storage engine architecture that uses that WAL alongside an in…
What is a Log-Structured Merge (LSM) Tree?
A log-structured merge (LSM) tree is a write-optimized storage data structure that buffers writes in an in-memory sorted table and periodically flushes them as…