class Redis::Distributed
def zinterstore(destination, keys, **options)
Intersect multiple sorted sets and store the resulting sorted set in a new
def zinterstore(destination, keys, **options) ensure_same_node(:zinterstore, [destination] + keys) do |node| node.zinterstore(destination, keys, **options) end end