RedisDatabase.zrevRangeByScore

Returns all the elements in the sorted set at key with a score between max and min (including elements with score equal to max or min).

  1. RedisReply!T zrevRangeByScore(string key, double min, double max, bool with_scores)
    struct RedisDatabase
    zrevRangeByScore
    (
    T = string
    string RNG = "[]"
    )
    (
    string key
    ,
    double min
    ,
    double max
    ,
    bool with_scores = false
    )
  2. RedisReply!T zrevRangeByScore(string key, double min, double max, long offset, long count, bool with_scores)

Meta