ZRANGESTORE

Usage:
ZRANGESTORE dst src min max [ byscore | bylex ] [ rev ] [ LIMIT offset count ]
Complexity:
O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements stored into the destination key.
Since:
6.2.0

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

Examples

ZADD srczset 1 "one" 2 "two" 3 "three" 4 "four"
ZRANGESTORE dstzset srczset 2 -1
ZRANGE dstzset 0 -1