Documentation ¶
Index ¶
Constants ¶
View Source
const ( RED color = 0 BLACK color = 1 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Memtable ¶
type Memtable struct {
// contains filtered or unexported fields
}
func (*Memtable) Get ¶
Returns the value for a given key. The second return value signals whether the key was found or not found.
func (*Memtable) Iterator ¶
Creates a new bounded iterator for the current state of the memtable. Since the memtable is backed by a persistent data structure, this reflects a point in time snapshot of the memtable.
func (*Memtable) UnboundedIterator ¶
Creates a new unbounded iterator for the current state of the memtable. Since the memtable is backed by a persistent data structure, this reflects a point in time snapshot of the memtable.
Click to show internal directories.
Click to hide internal directories.