teststore

package
v1.84.0-rc Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 19, 2023 License: AGPL-3.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	Items      []kvstore.Item
	ForceError int

	CallCount struct {
		Get    int
		Put    int
		Delete int
		Close  int
		Range  int
	}
	// contains filtered or unexported fields
}

Client implements in-memory key value store.

func New

func New() *Client

New creates a new in-memory key-value store.

func (*Client) Close

func (store *Client) Close() error

Close closes the store.

func (*Client) Delete

func (store *Client) Delete(ctx context.Context, key kvstore.Key) (err error)

Delete deletes key and the value.

func (*Client) Get

func (store *Client) Get(ctx context.Context, key kvstore.Key) (_ kvstore.Value, err error)

Get gets a value to store.

func (*Client) MigrateToLatest

func (store *Client) MigrateToLatest(ctx context.Context) error

MigrateToLatest pretends to migrate to latest db schema version.

func (*Client) Put

func (store *Client) Put(ctx context.Context, key kvstore.Key, value kvstore.Value) (err error)

Put adds a value to store.

func (*Client) Range

func (store *Client) Range(ctx context.Context, fn func(context.Context, kvstore.Key, kvstore.Value) error) error

Range iterates over all items in unspecified order.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL