7 releases

Uses old Rust 2015

0.3.3 Nov 12, 2023
0.3.2 Jul 20, 2023
0.3.0 Mar 5, 2022
0.2.1 Mar 1, 2022
0.1.0 Nov 27, 2016

#270 in Caching

Download history 1358/week @ 2023-12-14 926/week @ 2023-12-21 1012/week @ 2023-12-28 1934/week @ 2024-01-04 1653/week @ 2024-01-11 1505/week @ 2024-01-18 1787/week @ 2024-01-25 1843/week @ 2024-02-01 1910/week @ 2024-02-08 2122/week @ 2024-02-15 1766/week @ 2024-02-22 1906/week @ 2024-02-29 1525/week @ 2024-03-07 2222/week @ 2024-03-14 1364/week @ 2024-03-21 1151/week @ 2024-03-28

6,517 downloads per month
Used in 10 crates (6 directly)

MIT license

20KB
320 lines

HashRing

Build Status codecov crates.io docs.rs License

Documentation

A minimal implementation of consistent hashing as described in Consistent Hashing and Random Trees: Distributed Caching Protocols for Relieving Hot Spots on the World Wide Web. Clients can use the HashRing struct to add consistent hashing to their applications. HashRing's API consists of three methods: add, remove, and get for adding a node to the ring, removing a node from the ring, and getting the node responsible for the provided key.

Example

Below is a simple example of how an application might use HashRing to make use of consistent hashing. Since HashRing exposes only a minimal API clients can build other abstractions, such as virtual nodes, on top of it. The example below shows one potential implementation of virtual nodes on top of HashRing

use std::net::{IpAddr, SocketAddr};
use std::str::FromStr;

use hashring::HashRing;

#[derive(Debug, Copy, Clone, Hash, PartialEq)]
struct VNode {
    id: usize,
    addr: SocketAddr,
}

impl VNode {
    fn new(ip: &str, port: u16, id: usize) -> Self {
        let addr = SocketAddr::new(IpAddr::from_str(&ip).unwrap(), port);
        VNode {
            id: id,
            addr: addr,
        }
    }
}

impl ToString for VNode {
    fn to_string(&self) -> String {
        format!("{}|{}", self.addr, self.id)
    }
}

fn main() {
    let mut ring: HashRing<VNode> = HashRing::new();

    let mut nodes = vec![];
    nodes.push(VNode::new("127.0.0.1", 1024, 1));
    nodes.push(VNode::new("127.0.0.1", 1024, 2));
    nodes.push(VNode::new("127.0.0.2", 1024, 1));
    nodes.push(VNode::new("127.0.0.2", 1024, 2));
    nodes.push(VNode::new("127.0.0.2", 1024, 3));
    nodes.push(VNode::new("127.0.0.3", 1024, 1));

    for node in nodes {
        ring.add(node);
    }

    println!("{:?}", ring.get(&"foo"));
    println!("{:?}", ring.get(&"bar"));
    println!("{:?}", ring.get(&"baz"));
}

Dependencies

~55KB