| 278 | func (c *BenchBigCache) Close() {} |
| 279 | |
| 280 | type BenchFastCache struct { |
| 281 | cache *fastcache.Cache |
| 282 | log *policyLog |
| 283 | track bool |
| 284 | } |
| 285 | |
| 286 | func NewBenchFastCache(capacity int, track bool) Cache { |
| 287 | // NOTE: if capacity is less than 32MB, then fastcache sets it to 32MB |
nothing calls this directly
no outgoing calls
no test coverage detected