golang 八行代码实现的一致性哈希
A Fast, Minimal Memory, Consistent Hash Algorithm
https://arxiv.org/abs/1406.2294
https://github.com/dgryski/go-jump
// Hash consistently chooses a hash bucket number in the range [0, numBuckets) for the given key. numBuckets must be >= 1.
func Hash(key uint64, numBuckets int) int32 {
var b int64 = -1
var j int64
for j < int64(numBuckets) {
b = j
key = key*2862933555777941757 + 1
j = int64(float64(b+1) * (float64(int64(1)<<31) / float64((key>>33)+1)))
}
return int32(b)
}
0
See Also
- golang 在中国最受欢迎
- 60行代码使用 numpy 实现GPT
- 把西方音乐的一些理论融到200行python代码里
- 【代码规范】log日志需要增加文件配置
- Golang 版 json to go
Nearby
- 上一篇 › 怎样防止html代码格式化?
- 下一篇 › 完全按照教程安装,为什么装不了?