Files
2026-02-04 20:27:13 +08:00

8 lines
119 B
Go

package ttlcache
import "github.com/cespare/xxhash/v2"
func HashKey(key []byte) uint64 {
return xxhash.Sum64(key)
}