Documentation ¶ Index ¶ type Client func New(cfg config.RedisConfig, log *zap.Logger) (*Client, error) func (c *Client) Close() error func (c *Client) RDB() *redis.Client type Lock func NewLock(client *Client, key string, ttl time.Duration) *Lock func (l *Lock) Acquire(ctx context.Context) (bool, error) func (l *Lock) Release(ctx context.Context) error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Client ¶ type Client struct { // contains filtered or unexported fields } func New ¶ func New(cfg config.RedisConfig, log *zap.Logger) (*Client, error) func (*Client) Close ¶ func (c *Client) Close() error func (*Client) RDB ¶ func (c *Client) RDB() *redis.Client type Lock ¶ type Lock struct { // contains filtered or unexported fields } func NewLock ¶ func NewLock(client *Client, key string, ttl time.Duration) *Lock func (*Lock) Acquire ¶ func (l *Lock) Acquire(ctx context.Context) (bool, error) func (*Lock) Release ¶ func (l *Lock) Release(ctx context.Context) error Source Files ¶ View all Source files client.golock.go Click to show internal directories. Click to hide internal directories.