class Redis::Distributed

def decr(key)

Decrement the integer value of a key by one.
def decr(key)
  node_for(key).decr(key)
end