Module memtable

Module memtable 

Source
Expand description

Memtable - In-memory sorted write buffer

The Memtable is an in-memory data structure that holds recent writes before they are flushed to disk as SSTables. It uses a BTreeMap for sorted key order, which enables efficient range scans and ordered iteration.

Structs§

Memtable
Memtable - an in-memory sorted write buffer

Enums§

MemtableEntry
Entry value in the memtable - can be a value or a tombstone (deletion marker)