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>2014-07-11 04:49:14 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 01:03:10 +0300
commit59038f4232fe3de5a1380516be54300078a499c5 (patch)
tree38a2bb8acf63832ef4c12d650563feacfd8d0c84 /redis_cluster.h
parentc4b664439759518e810a956cd369f16183ca48ca (diff)
INFO command as well as a direct slot tweak
This commit implements the INFO command for RedisCluster, which behaves like other direct to node commands and can take either a key or a host and port. Updated cluster_send_slot function such that on success it sets the proper reply slot.
Diffstat (limited to 'redis_cluster.h')
-rw-r--r--redis_cluster.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_cluster.h b/redis_cluster.h
index 5d8c9c9e..e0635101 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -222,7 +222,7 @@ PHP_METHOD(RedisCluster, unsubscribe);
PHP_METHOD(RedisCluster, punsubscribe);
PHP_METHOD(RedisCluster, eval);
PHP_METHOD(RedisCluster, evalsha);
-PHP_METHOD(RedisCluter, info);
+PHP_METHOD(RedisCluster, info);
/* SCAN and friends */
PHP_METHOD(RedisCluster, scan);