Method: Redis#sinterstore
- Defined in:
- lib/redis.rb
#sinterstore(destination, *keys) ⇒ Fixnum
Intersect multiple sets and store the resulting set in a key.
1393 1394 1395 1396 1397 |
# File 'lib/redis.rb', line 1393 def sinterstore(destination, *keys) synchronize do |client| client.call([:sinterstore, destination] + keys) end end |