fastcache
fastcache copied to clipboard
contribution to the workingsetcache.go
//sort of missing the deletion and so here it is. func (c *Cache) Del(key []byte) { curr := c.curr.Load().(*fastcache.Cache) curr.Del(key) prev := c.prev.Load().(*fastcache.Cache) prev.Del(key) }
Are you talking about https://github.com/VictoriaMetrics/VictoriaMetrics/blob/master/lib/workingsetcache/cache.go ?
yes