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 20:47:30 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 01:04:12 +0300
commit265837230d5fa52a07d1bfcbfa40affc521460ef (patch)
tree2c83c416896e1f908e5f5025fe50109f8c3dbf32 /redis_cluster.h
parent77bcc2b2c436318d3e43ba6c86e51cbd4a32cffe (diff)
ZREMRANGEBYLEX
Implemented ZREMRANGEBYLEX in Redis and RedisCluster, and made the zlexcount command generic, as it has the same semantics.
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 3d7363c5..66d88d63 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -217,6 +217,7 @@ PHP_METHOD(RedisCluster, zrevrangebyscore);
PHP_METHOD(RedisCluster, zrangebylex);
PHP_METHOD(RedisCluster, zrevrangebylex);
PHP_METHOD(RedisCluster, zlexcount);
+PHP_METHOD(RedisCluster, zremrangebylex);
PHP_METHOD(RedisCluster, zunionstore);
PHP_METHOD(RedisCluster, zinterstore);
PHP_METHOD(RedisCluster, sort);