class Redis::Distributed

def incr(key)

Increment the integer value of a key by one.
def incr(key)
  node_for(key).incr(key)
end