🔎 Under the Hood: Flushing an LSM Tree
Deep dive into MemTables, flushing to SSTables, and why compaction is where the real costs lie. Includes the full lifecycle of a key, with cost analysis for insert, flush, and compaction steps.
Deep dive into MemTables, flushing to SSTables, and why compaction is where the real costs lie. Includes the full lifecycle of a key, with cost analysis for insert, flush, and compaction steps.
Hash maps aren’t fast because of magic or randomness — they’re fast because hashing is deterministic. Learn why this property powers O(1) lookups, Bloom filters, and consistent hashing.