class Redis::Distributed

def hincrby(key, field, increment)

Increment the integer value of a hash field by the given integer number.
def hincrby(key, field, increment)
  node_for(key).hincrby(key, field, increment)
end