conshash

Crates.ioconshash
lib.rsconshash
version0.1.4
sourcesrc
created_at2015-06-08 16:09:28.265094
updated_at2019-12-03 09:23:14.209491
descriptionA library to do consistent hashing in Rust.
homepage
repositoryhttps://github.com/muattiyah/conshash
max_upload_size
id2340
size9,669
Mohamed Attia (muattiyah)

documentation

README

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

Commit count: 10

cargo fmt