Documentation ¶
Index ¶
- type Client
- func (store *Client) Close() error
- func (store *Client) CompareAndSwap(ctx context.Context, key storage.Key, oldValue, newValue storage.Value) (err error)
- func (store *Client) Delete(ctx context.Context, key storage.Key) (err error)
- func (store *Client) DeleteMultiple(ctx context.Context, keys []storage.Key) (_ storage.Items, err error)
- func (store *Client) Get(ctx context.Context, key storage.Key) (_ storage.Value, err error)
- func (store *Client) GetAll(ctx context.Context, keys storage.Keys) (_ storage.Values, err error)
- func (store *Client) Iterate(ctx context.Context, opts storage.IterateOptions, ...) (err error)
- func (store *Client) IterateWithoutLookupLimit(ctx context.Context, opts storage.IterateOptions, ...) (err error)
- func (store *Client) List(ctx context.Context, first storage.Key, limit int) (_ storage.Keys, err error)
- func (store *Client) LookupLimit() int
- func (store *Client) MigrateToLatest(ctx context.Context) error
- func (store *Client) Put(ctx context.Context, key storage.Key, value storage.Value) (err error)
- func (store *Client) SetLookupLimit(v int)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { Items []storage.ListItem ForceError int CallCount struct { Get int Put int List int GetAll int Delete int Close int Iterate int CompareAndSwap int } // contains filtered or unexported fields }
Client implements in-memory key value store.
func (*Client) CompareAndSwap ¶ added in v0.16.0
func (store *Client) CompareAndSwap(ctx context.Context, key storage.Key, oldValue, newValue storage.Value) (err error)
CompareAndSwap atomically compares and swaps oldValue with newValue.
func (*Client) DeleteMultiple ¶ added in v0.33.2
func (store *Client) DeleteMultiple(ctx context.Context, keys []storage.Key) (_ storage.Items, err error)
DeleteMultiple deletes keys ignoring missing keys.
func (*Client) Iterate ¶
func (store *Client) Iterate(ctx context.Context, opts storage.IterateOptions, fn func(context.Context, storage.Iterator) error) (err error)
Iterate iterates over items based on opts.
func (*Client) IterateWithoutLookupLimit ¶ added in v1.4.1
func (store *Client) IterateWithoutLookupLimit(ctx context.Context, opts storage.IterateOptions, fn func(context.Context, storage.Iterator) error) (err error)
IterateWithoutLookupLimit calls the callback with an iterator over the keys, but doesn't enforce default limit on opts.
func (*Client) List ¶
func (store *Client) List(ctx context.Context, first storage.Key, limit int) (_ storage.Keys, err error)
List lists all keys starting from start and upto limit items.
func (*Client) LookupLimit ¶ added in v0.31.0
LookupLimit returns the maximum limit that is allowed.
func (*Client) MigrateToLatest ¶ added in v1.4.1
MigrateToLatest pretends to migrate to latest db schema version.
func (*Client) SetLookupLimit ¶ added in v0.31.0
SetLookupLimit sets the lookup limit.
Click to show internal directories.
Click to hide internal directories.