package
0.0.0-20170107010102-259d9253d719
Repository: https://github.com/golang/leveldb.git
Documentation: pkg.go.dev
# Functions
NewConcatenatingIterator returns an iterator that concatenates its input.
NewMergingIterator returns an iterator that merges its input.
SharedPrefixLen returns the largest i such that a[:i] equals b[:i].
# Constants
No description provided by the author
No description provided by the author
No description provided by the author
# Variables
DefaultComparer is the default implementation of the Comparer interface.
DefaultFileSystem is a FileSystem implementation backed by the underlying operating system's file system.
ErrNotFound means that a get or delete call did not find the requested key.
# Structs
Options holds the optional parameters for leveldb's DB implementations.
ReadOptions hold the optional per-query parameters for Get and Find operations.
WriteOptions hold the optional per-query parameters for Set and Delete operations.
# Interfaces
Comparer defines a total ordering over the space of []byte keys: a 'less than' relationship.
DB is a key/value store.
File is a readable, writable sequence of bytes.
FileSystem is a namespace for files.
FilterPolicy is an algorithm for probabilistically encoding a set of keys.
Iterator iterates over a DB's key/value pairs in key order.
# Type aliases
Compression is the per-block compression algorithm to use.