Versions in this module Expand all Collapse all v0 v0.15.1 Oct 11, 2023 Changes in this version + type Client struct + func New(machines []string) (*Client, error) + func (c *Client) Get(key string) ([]byte, error) + func (c *Client) GetWithContext(ctx context.Context, key string) ([]byte, error) + func (c *Client) List(bucket string) (backend.KVPairs, error) + func (c *Client) ListWithContext(ctx context.Context, bucket string) (backend.KVPairs, error) + func (c *Client) Set(key string, value []byte) error + func (c *Client) SetWithContext(ctx context.Context, key string, value []byte) error + func (c *Client) Watch(key string, stop chan bool) <-chan *backend.Response + func (c *Client) WatchWithContext(ctx context.Context, key string, stop chan bool) <-chan *backend.Response