class Redis::Distributed

def sunionstore(destination, *keys)

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