Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2017-08-20 23:28:00 +0300
committermichael-grunder <michael.grunder@gmail.com>2017-08-20 23:28:00 +0300
commitcccc3997e960472e54075b59acc2563cb1eb207e (patch)
tree6488379c216a08b99c5bc8c9b363bda44f52a821 /redis_commands.h
parent6e83c1126645759baa99fd9e08adb57603dfa565 (diff)
Update EXISTS to handle multiple keys
Fixes #1223
Diffstat (limited to 'redis_commands.h')
-rw-r--r--redis_commands.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/redis_commands.h b/redis_commands.h
index 018348d4..73b599cd 100644
--- a/redis_commands.h
+++ b/redis_commands.h
@@ -201,6 +201,9 @@ int redis_object_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
REDIS_REPLY_TYPE *rtype, char **cmd, int *cmd_len, short *slot,
void **ctx);
+int redis_exists_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
+ char **cmd, int *cmd_len, short *slot, void **ctx);
+
int redis_del_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
char **cmd, int *cmd_len, short *slot, void **ctx);