Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sile/consistent_hash
A Rust implementation of Consistent hashing algorithm
https://github.com/sile/consistent_hash
consistent-hashing rust
Last synced: 6 days ago
JSON representation
A Rust implementation of Consistent hashing algorithm
- Host: GitHub
- URL: https://github.com/sile/consistent_hash
- Owner: sile
- License: mit
- Created: 2017-01-17T15:48:10.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-06T18:55:59.000Z (almost 8 years ago)
- Last Synced: 2024-08-09T08:53:06.134Z (3 months ago)
- Topics: consistent-hashing, rust
- Language: Rust
- Size: 11.7 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
consistent_hash
===============[![Crates.io: consistent_hash](http://meritbadge.herokuapp.com/consistent_hash)](https://crates.io/crates/consistent_hash)
[![Build Status](https://travis-ci.org/sile/consistent_hash.svg?branch=master)](https://travis-ci.org/sile/consistent_hash)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)A Rust implementation of Consistent hashing algorithm.
[Documentation](https://docs.rs/consistent_hash)
Currently this crate only provides statically built, virtual node based hash rings.
An Informal Benchmark
----------------------```sh
$ cat /proc/cpuinfo | grep 'model name' | head -1
model name : Intel(R) Core(TM) i7-6600U CPU @ 2.60GHz$ uname -a
Linux ubuntu 4.8.0-34-generic #36-Ubuntu SMP Wed Dec 21 17:24:18 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux$ cargo run --release --example bench -- /usr/share/dict/words --vnode_count 1000 --nodes Rust Alef C++ Camlp4 CommonLisp Erlang Haskell Hermes Limbo Napier Napier88 Newsqueak NIL Sather StandardML
WORD COUNT: 99156
REAL NODE COUNT: 15
VIRTUAL NODE COUNT: 15000 (1000 per node)SELECTED COUNT PER NODE:
- Rust: 6265
- NIL: 6642
- Sather: 7165
- Erlang: 6545
- Camlp4: 6912
- Napier88: 6287
- CommonLisp: 6901
- C++: 6504
- StandardML: 6937
- Hermes: 6166
- Newsqueak: 6725
- Alef: 6586
- Haskell: 6240
- Limbo: 6754
- Napier: 6527ELAPSED: 18 ms
WORDS PER SECOND: 5342456
```