| 9 | ) |
| 10 | |
| 11 | type Cache struct { |
| 12 | capacity int |
| 13 | mu sync.RWMutex |
| 14 | entries map[uint64]*list.Element |
| 15 | values *list.List |
| 16 | evictions uint64 |
| 17 | } |
| 18 | |
| 19 | type CacheStats struct { |
| 20 | Capacity int |
nothing calls this directly
no outgoing calls
no test coverage detected