| 330 | func (c *BenchFastCache) Close() {} |
| 331 | |
| 332 | type BenchFreeCache struct { |
| 333 | cache *freecache.Cache |
| 334 | log *policyLog |
| 335 | track bool |
| 336 | } |
| 337 | |
| 338 | func NewBenchFreeCache(capacity int, track bool) Cache { |
| 339 | // NOTE: if capacity is less than 512KB, then freecache sets it to 512KB |
nothing calls this directly
no outgoing calls
no test coverage detected