Consistent Hashing library for Rust
Add hash_ring via your Cargo.toml
toml
[dependencies]
hash_ring = "*"
Just fork it, implement your changes and submit a pull request.
```rs extern crate hash_ring;
use hashring::HashRing; use hashring::NodeInfo;
fn main() {
let mut nodes: Vec
let mut hash_ring: HashRing<NodeInfo> = HashRing::new(nodes, 10);
println!("{}", hash_ring.get_node(String::from_str("hello")).to_string());
println!("{}", hash_ring.get_node(String::from_str("dude")).to_string());
println!("{}", hash_ring.get_node(String::from_str("martian")).to_string());
println!("{}", hash_ring.get_node(String::from_str("tardis")).to_string());
hash_ring.remove_node(&NodeInfo{host: "localhost", port: 15329});
println!("{}", hash_ring.get_node(String::from_str("hello")).to_string());
hash_ring.add_node(&NodeInfo{host: "localhost", port: 15329});
println!("{}", hash_ring.get_node(String::from_str("hello")).to_string());
} ```
MIT