var ( ErrNotFound = errors.ErrNotFound ErrIterReleased = errors.New("leveldb/memdb: iterator released") )
Common errors.
type DB struct {
// contains filtered or unexported fields
}
DB is an in-memory key/value database.
func New(cmp comparer.BasicComparer, capacity int) *DB
New creates a new initialized in-memory key/value DB. The capacity is the initial key/value buffer capacity. The capacity is advisory, not enforced.
This DB is append-only, deleting an entry would remove entry node but not reclaim KV buffer.
The returned DB instance is safe for concurrent use.
func (p *DB) Capacity() int
Capacity returns keys/values buffer capacity.
func (p *DB) Contains(key []byte) bool
Contains returns true if the given key are in the DB.
It is safe to modify the contents of the arguments after Contains returns.
func (p *DB) Delete(key []byte) error
Delete deletes the value for the given key. It returns ErrNotFound if the DB does not contain the key.
It is safe to modify the contents of the arguments after Delete returns.
func (p *DB) Find(key []byte) (rkey, value []byte, err error)
Find finds key/value pair whose key is greater than or equal to the given key. It returns ErrNotFound if the table doesn't contain such pair.
The caller should not modify the contents of the returned slice, but it is safe to modify the contents of the argument after Find returns.
func (p *DB) Free() int
Free returns keys/values free buffer before need to grow.
func (p *DB) Get(key []byte) (value []byte, err error)
Get gets the value for the given key. It returns error.ErrNotFound if the DB does not contain the key.
The caller should not modify the contents of the returned slice, but it is safe to modify the contents of the argument after Get returns.
func (p *DB) Len() int
Len returns the number of entries in the DB.
func (p *DB) NewIterator(slice *util.Range) iterator.Iterator
NewIterator returns an iterator of the DB. The returned iterator is not safe for concurrent use, but it is safe to use multiple iterators concurrently, with each in a dedicated goroutine. It is also safe to use an iterator concurrently with modifying its underlying DB. However, the resultant key/value pairs are not guaranteed to be a consistent snapshot of the DB at a particular point in time.
Slice allows slicing the iterator to only contains keys in the given range. A nil Range.Start is treated as a key before all keys in the DB. And a nil Range.Limit is treated as a key after all keys in the DB.
The iterator must be released after use, by calling Release method.
Also read Iterator documentation of the leveldb/iterator package.
func (p *DB) Put(key []byte, value []byte) error
Put sets the value for the given key. It overwrites any previous value for that key; a DB is not a multi-map.
It is safe to modify the contents of the arguments after Put returns.
func (p *DB) Reset()
Reset resets the DB to initial empty state. Allows reuse the buffer.
func (p *DB) Size() int
Size returns sum of keys and values length. Note that deleted key/value will not be accounted for, but it will still consume the buffer, since the buffer is append only.