in file fastcache.go, func (b *bucket) Set, line 359: `b.m[h] = idx | (b.gen << bucketSizeBits)` I think the code should be: ``` if oldValue, ok := b.m[h]; ok{ //do something, or the last key of same hashcode will lost } ``` thanks.