redisCache is the Cache implementation in redis
| 13 | |
| 14 | // redisCache is the Cache implementation in redis |
| 15 | type redisCache struct { |
| 16 | tracer telemetry.Tracer |
| 17 | client *redis.Client |
| 18 | } |
| 19 | |
| 20 | // NewRedisCache creates a new instance of RedisCache |
| 21 | func NewRedisCache(tracer telemetry.Tracer, client *redis.Client) Cache { |
nothing calls this directly
no outgoing calls
no test coverage detected