class Redis::Distributed

def sunionstore(destination, *keys)

Add multiple sets and store the resulting set in a key.
def sunionstore(destination, *keys)
  keys.flatten!(1)
  ensure_same_node(:sunionstore, [destination].concat(keys)) do |node|
    node.sunionstore(destination, keys)
  end
end