Versions in this module Expand all Collapse all v0 v0.1.0 Aug 1, 2023 Changes in this version + type Client struct + func New(opts Options) (*Client, error) + func StartDefault() (*Client, error) + func StartOptions(opts Options) (*Client, error) + func (c *Client) Del(key string) error + func (c *Client) Get(key string) (string, error) + func (c *Client) Ping() error + func (c *Client) Set(key, val string) error + func (c *Client) Start() + func (c *Client) Stop() error + type Options struct + Host string + Network string + Port int + type Worker struct