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-11-30 23:24:44 +0300
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 01:12:41 +0300
commit687a5ad64a6c143dcab4b19a7a27b2834c77e9af (patch)
tree98ed0c8426b07f90d2b2b00950f38ee82796c0e5 /redis_cluster.h
parent2f368bfedc18ee95b38cb3cd87e981772c05a8cf (diff)
Implements the getMode() command
Rename command to rawCommand() as it's named in phpredis proper This introspection function will inform the caller what mode phpredis is in (atomic, pipeline, multi) Conflicts: php_redis.h
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 a801fc51..c2749449 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -264,7 +264,7 @@ PHP_METHOD(RedisCluster, time);
PHP_METHOD(RedisCluster, randomkey);
PHP_METHOD(RedisCluster, ping);
PHP_METHOD(RedisCluster, echo);
-PHP_METHOD(RedisCluster, command);
+PHP_METHOD(RedisCluster, rawcommand);
/* Introspection */
PHP_METHOD(RedisCluster, getlasterror);