| 49 | var _ CacheClient = &redisCache{} |
| 50 | |
| 51 | type redisCache struct { |
| 52 | expiration time.Duration |
| 53 | client *redis.Client |
| 54 | cache *rediscache.Cache |
| 55 | redisCompressionType RedisCompressionType |
| 56 | } |
| 57 | |
| 58 | func (r *redisCache) getKey(key string) string { |
| 59 | switch r.redisCompressionType { |
nothing calls this directly
no outgoing calls
no test coverage detected