Versions in this module Expand all Collapse all v0 v0.1.0 Feb 28, 2022 Changes in this version + func NewStore(dsnString string) (store.KVStore, error) + type Store struct + func (s *Store) BatchDelete(ctx context.Context, keys [][]byte) error + func (s *Store) BatchGet(ctx context.Context, keys [][]byte) *store.Iterator + func (s *Store) BatchPrefix(ctx context.Context, prefixes [][]byte, limit int, options ...store.ReadOption) *store.Iterator + func (s *Store) Close() error + func (s *Store) EnableEmpty() + func (s *Store) FlushPuts(ctx context.Context) error + func (s *Store) Get(ctx context.Context, key []byte) ([]byte, error) + func (s *Store) Prefix(ctx context.Context, prefix []byte, limit int, options ...store.ReadOption) *store.Iterator + func (s *Store) Put(ctx context.Context, key, value []byte) (err error) + func (s *Store) Scan(ctx context.Context, start, exclusiveEnd []byte, limit int, ...) *store.Iterator + func (s *Store) String() string