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-10 00:12:15 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 00:42:51 +0300
commitb74a27e10158c5a1ae3f20fc9a83b522c74820cc (patch)
tree16bbb460ef3eab7c1cdaacbc3172b118258e1d2f /redis_cluster.h
parent05fad67e8888e800126dc94e69d4dda4fae1a78f (diff)
ZRANGEBYSCORE/ZREVRANGEBYSCORE
Implemented ZRANGEBYSCORE and ZREVRANGEBYSCORE in the new way for both Redis and RedisCluster objects. In addition, ZRANGE and ZREVRANGE handling is nearly identical to "BYSCORE" variants, so made this generic.
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 29e4f682..aa2f9a6a 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -142,5 +142,6 @@ PHP_METHOD(RedisCluster, smove);
PHP_METHOD(RedisCluster, srandmember);
PHP_METHOD(RedisCluster, zrange);
PHP_METHOD(RedisCluster, zrevrange);
+PHP_METHOD(RedisCluster, zrangebyscore);
PHP_METHOD(RedisCluster, sort);
#endif