class Redis::Distributed

def hsetnx(key, field, value)

Set the value of a hash field, only if the field does not exist.
def hsetnx(key, field, value)
  node_for(key).hsetnx(key, field, value)
end