Class ZRANGEBYSCORE

All Implemented Interfaces:
BaseResp3Command, Resp3Command

public class ZRANGEBYSCORE extends ZRANGE implements Resp3Command
Since:
15.0
See Also:
  • ZRANGEBYSCORE Returns all the elements in the sorted set at key with a score between min and max (including elements with score equal to min or max). The elements are considered to be ordered from low to high scores. The optional LIMIT argument can be used to only get a range of the matching elements (similar to SELECT LIMIT offset, count in SQL). A negative count returns all elements from the offset. As of Redis version 6.2.0, this command is regarded as deprecated. It can be replaced by ZRANGE.