Documentation ¶
Index ¶
- Variables
- func NewLevelDB(dir string) (*leveldbStore, error)
- type PrefixStore
- func (s *PrefixStore) Close() error
- func (s *PrefixStore) Delete(key []byte) error
- func (s *PrefixStore) DeleteAll() error
- func (s *PrefixStore) Get(key []byte) ([]byte, error)
- func (s *PrefixStore) Has(key []byte) (bool, error)
- func (s *PrefixStore) ListAll() ([][]byte, error)
- func (s *PrefixStore) ListAllKey() ([][]byte, error)
- func (s *PrefixStore) Put(key []byte, value []byte) error
- type Store
Constants ¶
This section is empty.
Variables ¶
View Source
var (
ErrNotFound = errors.New("not found")
)
Functions ¶
func NewLevelDB ¶
Types ¶
type PrefixStore ¶
func NewPrefixStore ¶
func NewPrefixStore(store Store, prefix []byte) *PrefixStore
func (*PrefixStore) Close ¶
func (s *PrefixStore) Close() error
func (*PrefixStore) Delete ¶
func (s *PrefixStore) Delete(key []byte) error
func (*PrefixStore) DeleteAll ¶
func (s *PrefixStore) DeleteAll() error
func (*PrefixStore) ListAll ¶
func (s *PrefixStore) ListAll() ([][]byte, error)
func (*PrefixStore) ListAllKey ¶ added in v0.0.2
func (s *PrefixStore) ListAllKey() ([][]byte, error)
Click to show internal directories.
Click to hide internal directories.