# File lib/redis.rb, line 1481
  def zremrangebyrank(key, start, stop)
    synchronize do |client|
      client.call [:zremrangebyrank, key, start, stop]
    end
  end