conshash 0.1.4

A library to do consistent hashing in Rust.
Documentation
  • Coverage
  • 11.11%
    1 out of 9 items documented1 out of 9 items with examples
  • Size
  • Source code size: 9.66 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 310.49 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • cipherself/conshash
    5 3 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • cipherself

conshash

Build Status

A library to do consistent hashing in Rust.

Crate

Get the crate at conshash

Example

extern crate conshash;


#[derive(Clone , Debug)]
struct TestNode {
   host_name: &'static str,
   ip_address: &'static str,
   port: u32,
}

impl ToString for TestNode {
   fn to_string(&self) -> String {
       format!("{}{}", self.ip_address.to_string(), self.port.to_string())
   }
}

let mut hash_ring = Ring::new(5);

let test_node = TestNode{host_name: "Skynet", ip_address: "192.168.1.1", port: 42};
hash_ring.add_node(&test_node);
hash_ring.remove_node(&test_node);
hash_ring.add_node(&test_node);
let x = hash_ring.get_node(hash(&format!("{}{}", test_node.to_string(), 0.to_string())));
// x is the node in the form of an Option<T> where T: Clone + ToString + Debug

License

MIT