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 17:23:29 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 01:03:10 +0300
commita4b160c4a14cd52e2611207c3a0c7515bc892261 (patch)
treed8774bb5092a5088fba5a868172562f55c203551 /redis_commands.h
parent0c7a1ba6e873fad2fb413b1d8c19d00fed77744c (diff)
ZLEXCOUNT
Implemented ZLEXCOUNT for both Redis and RedisCluster. Removed unused variable in INFO response processor
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 08763c23..3451a63c 100644
--- a/redis_commands.h
+++ b/redis_commands.h
@@ -200,6 +200,9 @@ int redis_sdiffstore_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
int redis_zrangebylex_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
char **cmd, int *cmd_len, short *slot, void **ctx);
+int redis_zlexcount_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);