@ -127,13 +127,13 @@ func (r *Cache) Set(key string, value []byte) bool {
return false
}
// remove random key if only we reach the maxSize threshold
for key := range r.items {
for (r.currentSize + valueLen) > r.maxSize {
r.doDelete(key)
break
r.items[key] = value
r.currentSize += valueLen
r.updatedAt[key] = time.Now()