Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

This is a revamped Google's jump consistent hash. It overcomes the shortcoming of the original implementation - not being able to remove nodes. Here is the main idea behind doublejump.

Benchmark

BenchmarkDoubleJump/10-nodes                     54723506           21.8 ns/op
BenchmarkDoubleJump/100-nodes                    31263981           38.6 ns/op
BenchmarkDoubleJump/1000-nodes                   24227624           48.5 ns/op

BenchmarkStathatConsistent/10-nodes              4053433           292.8 ns/op
BenchmarkStathatConsistent/100-nodes             3625465           333.8 ns/op
BenchmarkStathatConsistent/1000-nodes            3148849           389.5 ns/op

BenchmarkSerialxHashring/10-nodes                2357866           509.8 ns/op
BenchmarkSerialxHashring/100-nodes               2161783           531.3 ns/op
BenchmarkSerialxHashring/1000-nodes              1957911           628.4 ns/op

Example

h := NewHash()
for i := 0; i < 10; i++ {
    h.Add(fmt.Sprintf("node%d", i))
}

fmt.Println(h.Len())
fmt.Println(h.LooseLen())

fmt.Println(h.Get(1000))
fmt.Println(h.Get(2000))
fmt.Println(h.Get(3000))

h.Remove("node3")
fmt.Println(h.Len())
fmt.Println(h.LooseLen())

fmt.Println(h.Get(1000))
fmt.Println(h.Get(2000))
fmt.Println(h.Get(3000))

// Output:
// 10
// 10
// node9
// node2
// node3
// 9
// 10
// node9
// node2
// node0

Acknowledgements

The implementation of the original algorithm is credited to dgryski.

About

A revamped Google's jump consistent hash

Resources

Code of conduct

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages