mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 04:10:27 +08:00
8 lines
119 B
Go
8 lines
119 B
Go
package ttlcache
|
|
|
|
import "github.com/cespare/xxhash/v2"
|
|
|
|
func HashKey(key []byte) uint64 {
|
|
return xxhash.Sum64(key)
|
|
}
|