class Redis

def incr(key)

Increment the integer value of a key by one.
def incr(key)
  synchronize do
    @client.call(:incr, key)
  end
end