| 208 | ) |
| 209 | |
| 210 | type GroupCache struct { |
| 211 | shards [256]*lru.Cache |
| 212 | locks [256]sync.Mutex |
| 213 | } |
| 214 | |
| 215 | func (g *GroupCache) Get(key []byte) ([]byte, error) { |
| 216 | hashVal := xxhash.Sum64(key) |
nothing calls this directly
no outgoing calls
no test coverage detected