| 15 | var _ Cache = (*LRUCache)(nil) |
| 16 | |
| 17 | type LRUCache struct { |
| 18 | c Cache |
| 19 | logger log.Logger |
| 20 | defaultTTL time.Duration |
| 21 | name string |
| 22 | |
| 23 | mtx sync.Mutex |
| 24 | lru *lru.LRU[string, *Item] |
| 25 | |
| 26 | requests prometheus.Counter |
| 27 | hits prometheus.Counter |
| 28 | items prometheus.GaugeFunc |
| 29 | } |
| 30 | |
| 31 | type Item struct { |
| 32 | Data []byte |
nothing calls this directly
no outgoing calls
no test coverage detected