# File lib/redis.rb, line 577
  def incrby(key, increment)
    synchronize do |client|
      client.call [:incrby, key, increment]
    end
  end