ZRANGESTORE

ZRANGESTORE dst src min max [BYSCORE|BYLEX] [REV] [LIMIT offset count]

This command is like ZRANGE, but stores the result in the <dst> destination key.

Return value

Integer reply: the number of elements in the resulting sorted set.

Examples

redis> ZADD srczset 1 "one" 2 "two" 3 "three" 4 "four" (integer) 4 redis> ZRANGESTORE dstzset srczset 2 -1 (integer) 2 redis> ZRANGE dstzset 0 -1 1) "three" 2) "four"

© 2009–2020 Salvatore Sanfilippo
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
https://redis.io/commands/zrangestore