Versions in this module Expand all Collapse all v0 v0.0.2 Jan 5, 2025 v0.0.1 Jan 1, 2025 Changes in this version + const StoreName + type Config struct + type SQLiteStore struct + func New(ctx context.Context, endpoints []string, options *Config) (*SQLiteStore, error) + func (s *SQLiteStore) AtomicDelete(ctx context.Context, key string, previous *store.KVPair) (bool, error) + func (s *SQLiteStore) AtomicPut(ctx context.Context, key string, value []byte, previous *store.KVPair, ...) (bool, *store.KVPair, error) + func (s *SQLiteStore) Close() error + func (s *SQLiteStore) Delete(ctx context.Context, key string) error + func (s *SQLiteStore) DeleteTree(ctx context.Context, directory string) error + func (s *SQLiteStore) Exists(ctx context.Context, key string, opts *store.ReadOptions) (bool, error) + func (s *SQLiteStore) Get(ctx context.Context, key string, opts *store.ReadOptions) (*store.KVPair, error) + func (s *SQLiteStore) List(ctx context.Context, directory string, opts *store.ReadOptions) ([]*store.KVPair, error) + func (s *SQLiteStore) NewLock(ctx context.Context, key string, opts *store.LockOptions) (store.Locker, error) + func (s *SQLiteStore) Put(ctx context.Context, key string, value []byte, opts *store.WriteOptions) error + func (s *SQLiteStore) Watch(ctx context.Context, key string, opts *store.ReadOptions) (<-chan *store.KVPair, error) + func (s *SQLiteStore) WatchTree(ctx context.Context, directory string, opts *store.ReadOptions) (<-chan []*store.KVPair, error)