Current section

Files

Jump to
hlclock lib hlclock node_id.ex
Raw

lib/hlclock/node_id.ex

defmodule HLClock.NodeId do
def hash(name \\ Node.self()) do
name
|> Atom.to_string
|> :erlang.phash2
end
end