cache nbytes issues
Author: superTruthCreated May 5, 2020Updated May 5, 2020
In the groupcache.go func (c *cache) add(key string, value ByteView). "c.nbytes += int64(len(key)) + int64(value.Len())"
If the key has already exist, the nbytes calaculate will wrong.
Source: golang/groupcache