memoryUploadCache is an upload cache for single replica deployments
| 33 | |
| 34 | // memoryUploadCache is an upload cache for single replica deployments |
| 35 | type memoryUploadCache struct { |
| 36 | cache *ttlcache.Cache[string, int64] |
| 37 | } |
| 38 | |
| 39 | func newMemoryUploadCache() *memoryUploadCache { |
| 40 | cache := ttlcache.New[string, int64]() |
nothing calls this directly
no outgoing calls
no test coverage detected