Versions in this module Expand all Collapse all v0 v0.0.2 Jul 3, 2022 v0.0.1 Jul 3, 2022 Changes in this version + type RedisClient struct + Client *redis.Client + func NewRedisClient(logger *zap.Logger, opts *redis.Options, influxClient influxdb2.Client, ...) *RedisClient + func (c *RedisClient) Del(ctx context.Context, key string) error + func (c *RedisClient) Get(ctx context.Context, key string) (string, error) + func (c *RedisClient) LLen(ctx context.Context, key string) (int64, error) + func (c *RedisClient) LPush(ctx context.Context, key string, value string) error + func (c *RedisClient) Ping(ctx context.Context) error + func (c *RedisClient) RPop(ctx context.Context, key string) (string, error) + func (c *RedisClient) Set(ctx context.Context, key string, value string) error