(ctx context.Context, key string)
| 11 | // Client is wrapper interface for redis.Client and redis.ClusterClient. |
| 12 | type Client interface { |
| 13 | Get(ctx context.Context, key string) ([]byte, error) |
| 14 | Lock(key string) sessions.Lock |
| 15 | Set(ctx context.Context, key string, value []byte, expiration time.Duration) error |
| 16 | Del(ctx context.Context, key string) error |
no outgoing calls