Documentation ¶
Overview ¶
Package table allows read and write sorted key/value.
Index ¶
- Variables
- type ErrCorrupted
- type Reader
- func (r *Reader) Find(key []byte, filtered bool, ro *opt.ReadOptions) (rkey, value []byte, err error)
- func (r *Reader) FindKey(key []byte, filtered bool, ro *opt.ReadOptions) (rkey []byte, err error)
- func (r *Reader) Get(key []byte, ro *opt.ReadOptions) (value []byte, err error)
- func (r *Reader) NewIterator(slice *util.Range, ro *opt.ReadOptions) iterator.Iterator
- func (r *Reader) OffsetOf(key []byte) (offset int64, err error)
- func (r *Reader) Release()
- type Writer
Constants ¶
This section is empty.
Variables ¶
var ( ErrNotFound = errors.ErrNotFound ErrReaderReleased = errors.New("leveldb/table: reader released") ErrIterReleased = errors.New("leveldb/table: iterator released") )
Functions ¶
This section is empty.
Types ¶
type ErrCorrupted ¶
func (*ErrCorrupted) Error ¶
func (e *ErrCorrupted) Error() string
type Reader ¶
type Reader struct {
// contains filtered or unexported fields
}
Reader is a table reader.
func NewReader ¶
func NewReader(f io.ReaderAt, size int64, fi *storage.FileInfo, cache *cache.CacheGetter, bpool *util.BufferPool, o *opt.Options) (*Reader, error)
NewReader creates a new initialized table reader for the file. The fi, cache and bpool is optional and can be nil.
The returned table reader instance is goroutine-safe.
func (*Reader) Find ¶
func (r *Reader) Find(key []byte, filtered bool, ro *opt.ReadOptions) (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. If filtered is true then the nearest 'block' will be checked against 'filter data' (if present) and will immediately return ErrNotFound if 'filter data' indicates that such pair doesn't exist.
The caller may modify the contents of the returned slice as it is its own copy. It is safe to modify the contents of the argument after Find returns.
func (*Reader) FindKey ¶
Find finds key that is greater than or equal to the given key. It returns ErrNotFound if the table doesn't contain such key. If filtered is true then the nearest 'block' will be checked against 'filter data' (if present) and will immediately return ErrNotFound if 'filter data' indicates that such key doesn't exist.
The caller may modify the contents of the returned slice as it is its own copy. It is safe to modify the contents of the argument after Find returns.
func (*Reader) Get ¶
Get gets the value for the given key. It returns errors.ErrNotFound if the table does not contain the key.
The caller may modify the contents of the returned slice as it is its own copy. It is safe to modify the contents of the argument after Find returns.
func (*Reader) NewIterator ¶
NewIterator creates an iterator from the table.
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 table. And a nil Range.Limit is treated as a key after all keys in the table.
The returned iterator is not goroutine-safe and should be released when not used.
Also read Iterator documentation of the leveldb/iterator package.
type Writer ¶
type Writer struct {
// contains filtered or unexported fields
}
Writer is a table writer.
func NewWriter ¶
NewWriter creates a new initialized table writer for the file.
Table writer is not goroutine-safe.
func (*Writer) Append ¶
Append appends key/value pair to the table. The keys passed must be in increasing order.
It is safe to modify the contents of the arguments after Append returns.
func (*Writer) Close ¶
Close will finalize the table. Calling Append is not possible after Close, but calling BlocksLen, EntriesLen and BytesLen is still possible.
func (*Writer) EntriesLen ¶
EntriesLen returns number of entries added so far.