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/9508981 to your computer and use it in GitHub Desktop.
Save mattsta/9508981 to your computer and use it in GitHub Desktop.
Sample "GETEX" Redis function returning GET values as multibulk instead of a simple string. Returns a Redis error on error or a 1.) Value when given a string key.
local val,err = redis.pcall('get', KEYS[1])
if err then
return err
else
return {val}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment