jch-rs - Jump Consistent Hash for Rust

Build Status

Jump Consistent Hash is a linear complexity consistent hash algorithm described in John Lamping and Eric Veach's paper on the topic

Example

```rust use jch;

let key = 5u64; let numbuckets = 1024i32; println!("{}", jch::hash(key, numbuckets)); ```