You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//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)
}
The text was updated successfully, but these errors were encountered:
//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)
}
The text was updated successfully, but these errors were encountered: