class Redis
def zrevrangebylex(key, max, min, options = {})
- See: #zrangebylex -
Other tags:
- Example: Retrieve the last 2 members matching a -
Example: Retrieve members matching a -
def zrevrangebylex(key, max, min, options = {}) args = [] limit = options[:limit] args.concat(["LIMIT"] + limit) if limit synchronize do |client| client.call([:zrevrangebylex, key, max, min] + args) end end