goleveldb

package
v0.0.0-...-2768c2d Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 28, 2015 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const Name = "goleveldb"

Variables

This section is empty.

Functions

func StoreConstructor

func StoreConstructor(config map[string]interface{}) (store.KVStore, error)

Types

type Batch

type Batch struct {
	// contains filtered or unexported fields
}

func (*Batch) Close

func (b *Batch) Close() error

func (*Batch) Delete

func (b *Batch) Delete(key []byte)

func (*Batch) Execute

func (b *Batch) Execute() error

func (*Batch) Merge

func (b *Batch) Merge(key, val []byte)

func (*Batch) Set

func (b *Batch) Set(key, val []byte)

type Iterator

type Iterator struct {
	// contains filtered or unexported fields
}

func (*Iterator) Close

func (ldi *Iterator) Close() error

func (*Iterator) Current

func (ldi *Iterator) Current() ([]byte, []byte, bool)

func (*Iterator) Key

func (ldi *Iterator) Key() []byte

func (*Iterator) Next

func (ldi *Iterator) Next()

func (*Iterator) Seek

func (ldi *Iterator) Seek(key []byte)

func (*Iterator) SeekFirst

func (ldi *Iterator) SeekFirst()

func (*Iterator) Valid

func (ldi *Iterator) Valid() bool

func (*Iterator) Value

func (ldi *Iterator) Value() []byte

type Reader

type Reader struct {
	// contains filtered or unexported fields
}

func (*Reader) BytesSafeAfterClose

func (r *Reader) BytesSafeAfterClose() bool

func (*Reader) Close

func (r *Reader) Close() error

func (*Reader) Get

func (r *Reader) Get(key []byte) ([]byte, error)

func (*Reader) Iterator

func (r *Reader) Iterator(key []byte) store.KVIterator

type Store

type Store struct {
	// contains filtered or unexported fields
}

func New

func New(path string, config map[string]interface{}) (*Store, error)

func (*Store) Close

func (ldbs *Store) Close() error

func (*Store) Open

func (ldbs *Store) Open() error

func (*Store) Reader

func (ldbs *Store) Reader() (store.KVReader, error)

func (*Store) SetMergeOperator

func (ldbs *Store) SetMergeOperator(mo store.MergeOperator)

func (*Store) Writer

func (ldbs *Store) Writer() (store.KVWriter, error)

type Writer

type Writer struct {
	// contains filtered or unexported fields
}

func (*Writer) BytesSafeAfterClose

func (w *Writer) BytesSafeAfterClose() bool

func (*Writer) Close

func (w *Writer) Close() error

func (*Writer) Delete

func (w *Writer) Delete(key []byte) error

func (*Writer) Get

func (w *Writer) Get(key []byte) ([]byte, error)

these two methods can safely read using the regular methods without a read transaction, because we know that no one else is writing but us

func (*Writer) Iterator

func (w *Writer) Iterator(key []byte) store.KVIterator

func (*Writer) NewBatch

func (w *Writer) NewBatch() store.KVBatch

func (*Writer) Set

func (w *Writer) Set(key, val []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL