Method: Redis#sinterstore

Defined in:
lib/redis.rb

#sinterstore(destination, *keys) ⇒ Object

Intersect multiple sets and store the resulting set in a key.



475
476
477
478
479
# File 'lib/redis.rb', line 475

def sinterstore(destination, *keys)
  synchronize do
    @client.call [:sinterstore, destination, *keys]
  end
end