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