memoryCache is the Cache implementation in memory
| 12 | |
| 13 | // memoryCache is the Cache implementation in memory |
| 14 | type memoryCache struct { |
| 15 | tracer telemetry.Tracer |
| 16 | store *ttlCache.Cache |
| 17 | } |
| 18 | |
| 19 | // NewMemoryCache creates a new instance of memoryCache |
| 20 | func NewMemoryCache(tracer telemetry.Tracer, store *ttlCache.Cache) Cache { |
nothing calls this directly
no outgoing calls
no test coverage detected