Versions in this module Expand all Collapse all v0 v0.0.1 Oct 6, 2021 Changes in this version + func MigrateCaches(c interface{}, get func() interface{}) + func MigrateTables(s interface{}, db kvdb.Store) + type Readonly struct + func NewReadonly(db kvdb.ReadonlyStore, prefix []byte) *Readonly + func (t *Readonly) Get(key []byte) ([]byte, error) + func (t *Readonly) Has(key []byte) (bool, error) + func (t *Readonly) NewIterator(itPrefix []byte, start []byte) kvdb.Iterator + func (t *Readonly) NewReadonlyTable(prefix []byte) *Readonly + func (t *Readonly) Stat(property string) (string, error) + type Table struct + func New(db kvdb.Store, prefix []byte) *Table + func (t *Table) Close() error + func (t *Table) Compact(start []byte, limit []byte) error + func (t *Table) Delete(key []byte) error + func (t *Table) Drop() + func (t *Table) NewBatch() kvdb.Batch + func (t *Table) NewTable(prefix []byte) *Table + func (t *Table) Put(key []byte, value []byte) error