MemTable holds a sorted list of the latest written records. Writes are duplicated to the WAL for recovery of the MemTable in the event of a restart. MemTables have a max capacity and when that is reached, we flush the MemTable to disk as a Table(SSTable). Entries are stored in a Vector instead of a HashMap to support Scans.
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected