|
WiscKey Database
Embedded LSM-Tree Key-Value Database
|
MemTable of the Database. More...
#include <memtable.h>
Data Fields | |
| struct MemTableRecord * | records [MEMTABLE_SIZE] |
| Array of records sorted by key. | |
| size_t | size |
The number of records filled in records. | |
MemTable of the Database.
In-memory table of the records that have been modified most recently. At any given time, there is only one active MemTable in the database engine. The MemTable is always the first store to be searched when a key-value pair is requested.