]> git.saurik.com Git - redis.git/commit - src/scripting.c
Scripting: add helper functions redis.error_reply() and redis.status_reply().
authorantirez <antirez@gmail.com>
Fri, 28 Sep 2012 14:54:57 +0000 (16:54 +0200)
committerantirez <antirez@gmail.com>
Fri, 28 Sep 2012 14:58:38 +0000 (16:58 +0200)
commitf1466e11cd1c2c41f01e505e54f465d0eb4b4f42
tree833bf612e46b57714b7f171a1b1616311e529e48
parente061d797d739f2beeb22b9e8ac519d1df070e3a8
Scripting: add helper functions redis.error_reply() and redis.status_reply().

A previous commit introduced Redis.NIL. This commit adds similar helper
functions to return tables with a single field set to the specified
string so that instead of using 'return {err="My Error"}' it is possible
to use a more idiomatic form:

    return redis.error_reply("My Error")
    return redis.status_reply("OK")
src/scripting.c