1 Star 0 Fork 0

谢官峰 / bigcache

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
hash.go 339 Bytes
一键复制 编辑 原始数据 按行查看 历史
package bigcache
// Hasher is responsible for generating unsigned, 64 bit hash of provided string. Hasher should minimize collisions
// (generating same hash for different strings) and while performance is also important fast functions are preferable (i.e.
// you can use FarmHash family).
type Hasher interface {
Sum64(string) uint64
}
1
https://gitee.com/mars79668/bigcache.git
git@gitee.com:mars79668/bigcache.git
mars79668
bigcache
bigcache
v1.2.1

搜索帮助