Versions in this module Expand all Collapse all v0 v0.4.1 Mar 12, 2014 Changes in this version + var ErrNotFound = errors.New("key not found") + type Storage interface + Close func() error + Delete func(key []byte) error + FetchByPrefix func(prefix []byte) [][]byte + FinishBatch func() error + Get func(key []byte) ([]byte, error) + KeysByPrefix func(prefix []byte) [][]byte + Put func(key []byte, value []byte) error + StartBatch func() + func OpenDB(path string) (Storage, error)