class Redis::Distributed

def zinter(*keys, **options)

Get the intersection of multiple sorted sets
def zinter(*keys, **options)
  ensure_same_node(:zinter, keys) do |node|
    node.zinter(*keys, **options)
  end
end