Jump Consistent Hash

A fast, minimal memory, consistent hash algorithm.

API documentation

Example

Cargo dependencies: toml [dependencies] jumphash = "~0"

Rust code:

```rust extern crate jumphash;

let jh = jumphash::JumpHasher::new(); let slotcount = 100; let slotforkey = jh.slot("key", slotcount); ```