Skip to content

Instantly share code, notes, and snippets.

@msonnabaum
Created September 23, 2012 05:41
Show Gist options
  • Save msonnabaum/3769010 to your computer and use it in GitHub Desktop.
Save msonnabaum/3769010 to your computer and use it in GitHub Desktop.
local keys = redis.call('hkeys', KEYS[1])
local ret = {}
for k,v in pairs(keys) do
if redis.call('hget', KEYS[1], v) == 'asdf' then
return v
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment