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_cluster.c
parent6e83c1126645759baa99fd9e08adb57603dfa565 (diff)
Update EXISTS to handle multiple keys
Fixes #1223
Diffstat (limited to 'redis_cluster.c')
-rw-r--r--redis_cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_cluster.c b/redis_cluster.c
index 3449e706..ec7e2920 100644
--- a/redis_cluster.c
+++ b/redis_cluster.c
@@ -1008,7 +1008,7 @@ PHP_METHOD(RedisCluster, getset) {
/* {{{ proto int RedisCluster::exists(string key) */
PHP_METHOD(RedisCluster, exists) {
- CLUSTER_PROCESS_KW_CMD("EXISTS", redis_key_cmd, cluster_1_resp, 1);
+ CLUSTER_PROCESS_CMD(exists, cluster_long_resp, 1);
}
/* }}} */