From b1ad5435ff4d8a7d53c747c04f81678a1aa05ce6 Mon Sep 17 00:00:00 2001 From: michael-grunder Date: Sat, 30 Aug 2014 11:45:09 -0700 Subject: ZRANGEBYLEX command This commit adds the command ZRANGEBYLEX to phpredis, which was introduced in 2.8.9. Like with most commands, phpredis will do some simple validation on the client side, to avoid sending calls which are not correct (e.g. min/max that aren't valid for the call, etc). Addresses #498 and #465 --- php_redis.h | 1 + 1 file changed, 1 insertion(+) (limited to 'php_redis.h') diff --git a/php_redis.h b/php_redis.h index 437d0df8..23e26310 100644 --- a/php_redis.h +++ b/php_redis.h @@ -111,6 +111,7 @@ PHP_METHOD(Redis, zDelete); PHP_METHOD(Redis, zRange); PHP_METHOD(Redis, zReverseRange); PHP_METHOD(Redis, zRangeByScore); +PHP_METHOD(Redis, zRangeByLex); PHP_METHOD(Redis, zRevRangeByScore); PHP_METHOD(Redis, zCount); PHP_METHOD(Redis, zDeleteRangeByScore); -- cgit v1.2.3