Crate conhash

Source
Expand description

Consistent Hashing is a special kind of hashing such that when a hash table is resized and consistent hashing is used, only K/n keys need to be remapped on average, where K is the number of keys, and n is hte number of slots.

Re-exports§

pub use crate::conhash::ConsistentHash;
pub use node::Node;

Modules§

conhash
node