Home | History | Annotate | Download | only in db

Lines Matching defs:MemTable

20 class MemTable {
24 explicit MemTable(const InternalKeyComparator& comparator);
42 // operations on the same MemTable.
45 // Return an iterator that yields the contents of the memtable.
47 // The caller must ensure that the underlying MemTable remains live
53 // Add an entry into memtable that maps key to value at the
60 // If memtable contains a value for key, store it in *value and return true.
61 // If memtable contains a deletion for key, store a NotFound() error
67 ~MemTable(); // Private since only Unref() should be used to delete it
85 MemTable(const MemTable&);
86 void operator=(const MemTable&);