redisUploadCache is an upload cache for multi replica deployments
| 12 | |
| 13 | // redisUploadCache is an upload cache for multi replica deployments |
| 14 | type redisUploadCache struct { |
| 15 | client *redis.Client |
| 16 | } |
| 17 | |
| 18 | func newRedisUploadCache(redisURL string) (*redisUploadCache, error) { |
| 19 | if redisURL == "" { |
nothing calls this directly
no outgoing calls
no test coverage detected