Versions in this module Expand all Collapse all v0 v0.2.0 Mar 7, 2022 Changes in this version + type Bolt struct + func NewBolt(path string) (*Bolt, error) + func (b *Bolt) Backup(path string) error + func (b *Bolt) Close() error + func (b *Bolt) CreateBucket(bucket []byte) error + func (b *Bolt) Delete(bucket, key []byte) error + func (b *Bolt) DeleteBucket(bucket []byte) error + func (b *Bolt) FindAll(bucket []byte) (map[string][]byte, error) + func (b *Bolt) FindWithPrefix(bucket, prefix []byte) (map[string][]byte, error) + func (b *Bolt) Get(bucket, key []byte) ([]byte, error) + func (b *Bolt) GetDB() *bbolt.DB + func (b *Bolt) IntToByte(v int) []byte + func (b *Bolt) ListBuckets() ([]string, error) + func (b *Bolt) Open(path string) error + func (b *Bolt) Put(bucket, key, value []byte) error