class Redis

def incrby(key, increment)

Increment the integer value of a key by the given number.
def incrby(key, increment)
  synchronize do
    @client.call(:incrby, key, increment)
  end
end