Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Batch ¶
Batch represents an atomic batch of operations. All operations in a batch are performed atomically.
type Iterator ¶
type Iterator interface {
Next() bool
Key() []byte
Value() ([]byte, error)
Valid() bool
Close() error
}
Iterator provides sequential access over a range of key-value pairs. Iterators must be closed after use.
Click to show internal directories.
Click to hide internal directories.