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 /php_redis.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 'php_redis.h')
-rw-r--r--php_redis.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/php_redis.h b/php_redis.h
index 804740d6..6077c8b1 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -117,6 +117,7 @@ PHP_METHOD(Redis, zRangeByLex);
PHP_METHOD(Redis, zRevRangeByScore);
PHP_METHOD(Redis, zRangeByLex);
PHP_METHOD(Redis, zRevRangeByLex);
+PHP_METHOD(Redis, zRemRangeByLex);
PHP_METHOD(Redis, zLexCount);
PHP_METHOD(Redis, zCount);
PHP_METHOD(Redis, zDeleteRangeByScore);