Skip to content

Instantly share code, notes, and snippets.

@mattsta
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattsta/9509053 to your computer and use it in GitHub Desktop.
Save mattsta/9509053 to your computer and use it in GitHub Desktop.
Sample "PGETEX" Redis function returning GET values combined with PTTL. Returns error if non-string key, nil on no key, or a multi-bulk reply of 1.) Value 2.) PTTL.
local val = redis.call('get', KEYS[1])
if val then
return {val, redis.call('pttl', KEYS[1])}
else
return false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment