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-13 00:00:40 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 01:04:12 +0300
commit01414b1f4fbeae20f809a797db85ca4c3f7cc41c (patch)
treee2928bdc7cac8e71c39185c1aa36fd4a9f7e57be /redis_cluster.h
parent13dd6067d1b5b9d2a92be8846ec6dcac43af7272 (diff)
Implement remaining commands
For certain commands that need to be directed at a node (CONFIG, CLIENT, SCRIPT, etc), the syntax can be complicated and highly variant. For this reason, these remaining commands have been implemented in a generic way, where users will rely on the error message from Redis to figure out what went wrong. All of the commands take our standardized "node" argument which can either take the form of a string key, or Array(host, port).
Diffstat (limited to 'redis_cluster.h')
-rw-r--r--redis_cluster.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/redis_cluster.h b/redis_cluster.h
index a86b447a..8008eb94 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -229,6 +229,12 @@ PHP_METHOD(RedisCluster, punsubscribe);
PHP_METHOD(RedisCluster, eval);
PHP_METHOD(RedisCluster, evalsha);
PHP_METHOD(RedisCluster, info);
+PHP_METHOD(RedisCluster, cluster);
+PHP_METHOD(RedisCluster, client);
+PHP_METHOD(RedisCluster, config);
+PHP_METHOD(RedisCluster, pubsub);
+PHP_METHOD(RedisCluster, script);
+PHP_METHOD(RedisCluster, slowlog);
/* SCAN and friends */
PHP_METHOD(RedisCluster, scan);