module Redis::Commands::SortedSet
Direct including types
Defined in:
commands/sorted_set.crInstance Method Summary
- #zadd(key : String, score : String | Float, value : String)
- #zadd(key : String, values : Enumerable)
- #zcard(key : String)
- #zrange(key : String, starting : String | Int, ending : String | Int, with_scores : Bool = false)
- #zrangebyscore(key : String, low : String | Float, high : String | Float, limit : Enumerable(String) | Nil = nil)
- #zrem(key : String, value : String)
- #zremrangebyrank(key : String, low : Int, high : Int)
- #zremrangebyscore(key : String, low : String | Float, high : String | Float)
- #zrevrange(key : String, starting : String | Int, ending : String | Int, with_scores : Bool = false)
Instance Method Detail
def zrange(key : String, starting : String | Int, ending : String | Int, with_scores : Bool = false)
#
def zrangebyscore(key : String, low : String | Float, high : String | Float, limit : Enumerable(String) | Nil = nil)
#
def zrevrange(key : String, starting : String | Int, ending : String | Int, with_scores : Bool = false)
#