| 25 | const istioCacheKey = "istio-cache-store" |
| 26 | |
| 27 | type redisCacheStore struct { |
| 28 | redisCache *cache.RedisCache |
| 29 | } |
| 30 | |
| 31 | func NewRedisCache() Cacher { |
| 32 | return &redisCacheStore{ |
nothing calls this directly
no outgoing calls
no test coverage detected