Giter Site home page Giter Site logo

ex_hash_ring's Introduction

Hash Ring

Master Hex.pm Version

A pure Elixir consistent hash ring implemention based on the excellent C hash-ring lib by Chris Moos.

The hashring provides fast lookup, but ring creation isn't optimized (though it's not slow). It deliberately does not provide encapsulation within a GenServer and leaves that up to the user. At Discord we found using a GenServer for such frequently accessed data proved to be overwhelming so we rewrote the hash ring in pure Elixir and paired it with FastGlobal to allow the calling process to use it's CPU time to interact with the hash ring and therefore avoiding overloading a central GenServer.

Usage

Add it to mix.exs.

defp deps do
  [{:ex_hash_ring, "~> 3.0"}]
end

Create a new HashRing.

alias ExHashRing.HashRing

ring = HashRing.new
{:ok, ring} = HashRing.add_node(ring, "a")
{:ok, ring} = HashRing.add_node(ring, "b")

Find the node for a key.

"a" = HashRing.find_node(ring, "key1")
"b" = HashRing.find_node(ring, "key3")

Additionally, you can also use ExHashRing.HashRing.ETS, which holds the ring in an ETS table for fast access, if you need the ring across multiple processes.

{:ok, pid} = HashRing.ETS.start_link(TheRing)
{:ok, _nodes} = HashRing.ETS.add_node(pid, "a")
{:ok, _nodes} = HashRing.ETS.add_node(pid, "b")

And then find a node for a key, using the ETS name provided:

"a" = HashRing.ETS.find_node(TheRing, "key1")
"b" = HashRing.ETS.find_node(TheRing, "key3")

License

Hash Ring is released under the MIT License. Check LICENSE file for more information.

ex_hash_ring's People

Contributors

jhgg avatar likeanocean avatar vishnevskiy avatar scohen avatar gmjosack avatar tcyrus avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.