rendezvous-hash v0.3.1
rendezvous-hash
Rendezvous hashing for crystal that utilises the murmur3 hashing algorithm.
Installation
-
Add the dependency to your
shard.yml
:dependencies: rendezvous-hash: github: caspiano/rendezvous-hash
-
Run
shards install
Usage
require "rendezvous-hash"
hash = RendezvousHash.new(nodes: ["node1", "node2", "node3"])
hash.find("device1") # => "node3"
hash.remove("node3") # => "node3"
hash.nodes # => ["node1", "node2"]
hash.find("device1") # => "node1"
hash.remove?("node3") # => nil
hash.add("node3") # => ["node1", "node2", "node3"]
hash.find("device1") # => "node3"
hash["device1"] # => "node3"
Credit
Todo
- Benchmarking
- murmur3 seeding
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Caspian Baska - creator and maintainer
Repository
rendezvous-hash
Owner
Statistic
- 2
- 1
- 0
- 2
- 1
- almost 5 years ago
- July 31, 2019
License
MIT License
Links
Synced at
Wed, 06 Nov 2024 21:16:12 GMT
Languages