class Redis::Distributed

def sadd(key, *members)

Add one or more members to a set.
def sadd(key, *members)
  node_for(key).sadd(key, *members)
end