Skip to content

Instantly share code, notes, and snippets.

@cablehead
Created January 4, 2016 22:39
Show Gist options
  • Save cablehead/dd740e9885f3a327cbf3 to your computer and use it in GitHub Desktop.
Save cablehead/dd740e9885f3a327cbf3 to your computer and use it in GitHub Desktop.
local d = require("levee").d
local ring = d.HashRing()
ring:put("foo", 3, 2)
print(ring:get("foo"))
ring:del("foo")
ring:put("foo", 3, 2)
print(ring:get("foo") == nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment