package boltdb
import "github.com/dotcloud/docker/libnetwork/internal/kvstore/boltdb"
Index ¶
- Variables
- func New(endpoints []string, options *store.Config) (store.Store, error)
- type BoltDB
- func (b *BoltDB) AtomicDelete(key string, previous *store.KVPair) error
- func (b *BoltDB) AtomicPut(key string, value []byte, previous *store.KVPair) (*store.KVPair, error)
- func (b *BoltDB) Close()
- func (b *BoltDB) Exists(key string) (bool, error)
- func (b *BoltDB) List(keyPrefix string) ([]*store.KVPair, error)
- func (b *BoltDB) Put(key string, value []byte) error
Variables ¶
var ( // ErrMultipleEndpointsUnsupported is thrown when multiple endpoints specified for // BoltDB. Endpoint has to be a local file path ErrMultipleEndpointsUnsupported = errors.New("boltdb supports one endpoint and should be a file path") // ErrBoltBucketOptionMissing is thrown when boltBcuket config option is missing ErrBoltBucketOptionMissing = errors.New("boltBucket config option missing") )
Functions ¶
func New ¶
New opens a new BoltDB connection to the specified path and bucket
Types ¶
type BoltDB ¶
type BoltDB struct { // By default libkv opens and closes the bolt DB connection for every // get/put operation. This allows multiple apps to use a Bolt DB at the // same time. // PersistConnection flag provides an option to override ths behavior. // ie: open the connection in New and use it till Close is called. PersistConnection bool // contains filtered or unexported fields }
BoltDB type implements the Store interface
func (*BoltDB) AtomicDelete ¶
AtomicDelete deletes a value at "key" if the key has not been modified in the meantime, throws an error if this is the case
func (*BoltDB) AtomicPut ¶
AtomicPut puts a value at "key" if the key has not been modified since the last Put, throws an error if this is the case
func (*BoltDB) Close ¶
func (b *BoltDB) Close()
Close the db connection to the BoltDB
func (*BoltDB) Exists ¶
Exists checks if the key exists inside the store
func (*BoltDB) List ¶
List returns the range of keys starting with the passed in prefix
func (*BoltDB) Put ¶
Put the key, value pair. index number metadata is prepended to the value
Source Files ¶
- Version
- v25.0.2+incompatible
- Published
- Feb 1, 2024
- Platform
- linux/amd64
- Imports
- 10 packages
- Last checked
- 44 minutes ago –
Tools for package owners.