Method: Redis::Commands::Sets#sinter
- Defined in:
- lib/redis/commands/sets.rb
#sinter(*keys) ⇒ Array<String>
Intersect multiple sets.
155 156 157 |
# File 'lib/redis/commands/sets.rb', line 155 def sinter(*keys) send_command([:sinter, *keys]) end |