mirror of
https://github.com/fluencelabs/redis
synced 2025-06-12 08:41:21 +00:00
ZRANGEBYSCORE now supports open intervals, prefixing double values with a open paren. Added ZCOUNT that can count the elements inside an interval of scores, this supports open intervals too
This commit is contained in:
@ -101,6 +101,7 @@ static struct redisCommand cmdTable[] = {
|
||||
{"zremrangebyscore",4,REDIS_CMD_INLINE},
|
||||
{"zrange",-4,REDIS_CMD_INLINE},
|
||||
{"zrangebyscore",-4,REDIS_CMD_INLINE},
|
||||
{"zcount",4,REDIS_CMD_INLINE},
|
||||
{"zrevrange",-4,REDIS_CMD_INLINE},
|
||||
{"zcard",2,REDIS_CMD_INLINE},
|
||||
{"zscore",3,REDIS_CMD_BULK},
|
||||
|
Reference in New Issue
Block a user