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