class Redis

def decr(key)

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