class Redis::Distributed

def sinterstore(destination, *keys)

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