5 个版本
使用旧的 Rust 2015
0.1.4 | 2019 年 12 月 3 日 |
---|---|
0.1.3 | 2017 年 11 月 23 日 |
0.1.2 | 2015 年 8 月 21 日 |
0.1.1 | 2015 年 6 月 8 日 |
0.1.0 | 2015 年 6 月 8 日 |
#6 in #hash-ring
9KB
129 行
conshash
在 Rust 中进行一致性哈希的库。
包
获取包: conshash
示例
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
许可证
lib.rs
:
#示例
extern crate conshash;
use std::collections::hash_map::DefaultHasher;
#[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 = conshash::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(conshash::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