class Redis

def zrevrangebylex(key, max, min, limit: nil)

Other tags:
    See: #zrangebylex -

Other tags:
    Example: Retrieve the last 2 members matching a -
    Example: Retrieve members matching a -
def zrevrangebylex(key, max, min, limit: nil)
  args = [:zrevrangebylex, key, max, min]
  if limit
    args << "LIMIT"
    args.concat(limit)
  end
  synchronize do |client|
    client.call(args)
  end
end