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-06-09 23:18:06 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 00:42:36 +0300
commit05fad67e8888e800126dc94e69d4dda4fae1a78f (patch)
treef87c4a9aaca28771c5fd508456d6392bbbf1a9d9 /redis_cluster.h
parentc89b3a651fa7674fc591342bc737e44d3745ba69 (diff)
SORT command
Implemented SORT command in a new way (using a zval array to construct each argument, then creating the command from that), as well as updated Redis proper and RedisCluster to use it.
Diffstat (limited to 'redis_cluster.h')
-rw-r--r--redis_cluster.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/redis_cluster.h b/redis_cluster.h
index 0019fdfa..29e4f682 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -142,4 +142,5 @@ PHP_METHOD(RedisCluster, smove);
PHP_METHOD(RedisCluster, srandmember);
PHP_METHOD(RedisCluster, zrange);
PHP_METHOD(RedisCluster, zrevrange);
+PHP_METHOD(RedisCluster, sort);
#endif