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 06:04:24 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 01:03:10 +0300
commit0c7a1ba6e873fad2fb413b1d8c19d00fed77744c (patch)
tree3b824afcd213192ec5921b6ee328dc206ec171f3 /redis_commands.h
parent59038f4232fe3de5a1380516be54300078a499c5 (diff)
ZRANGEBYLEX
Implemented ZRANGEBYLEX for both Redis and RedisCluster
Diffstat (limited to 'redis_commands.h')
-rw-r--r--redis_commands.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/redis_commands.h b/redis_commands.h
index 64a8a0c0..08763c23 100644
--- a/redis_commands.h
+++ b/redis_commands.h
@@ -197,6 +197,9 @@ int redis_sdiff_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
int redis_sdiffstore_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
char **cmd, int *cmd_len, short *slot, void **ctx);
+int redis_zrangebylex_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
+ char **cmd, int *cmd_len, short *slot, void **ctx);
+
int redis_fmt_scan_cmd(char **cmd, REDIS_SCAN_TYPE type, char *key, int key_len,
long it, char *pat, int pat_len, long count);