Versions in this module Expand all Collapse all v0 v0.1.0 Mar 8, 2021 Changes in this version + type Storage struct + func NewPebbleStorage(path string, errorIfMissing bool) (*Storage, error) + func (p *Storage) Close() + func (p *Storage) Get(key []byte) ([]byte, error) + func (p *Storage) Iterate(f func([]byte, []byte) (bool, error)) (err error) + func (p *Storage) List(limit int) ([]db.KV, error) + func (p *Storage) NewTx() (db.Tx, error) + func (p *Storage) Pebble() *pebble.DB + func (p *Storage) WithPrefix(prefix []byte) db.Storage + type StorageTx struct + func (tx *StorageTx) Add(atx db.Tx) error + func (tx *StorageTx) Close() + func (tx *StorageTx) Commit() error + func (tx *StorageTx) Get(key []byte) ([]byte, error) + func (tx *StorageTx) Put(k, v []byte) error