Method: Redis::Commands::SortedSets#zdiff
- Defined in:
- lib/redis/commands/sorted_sets.rb
#zdiff(*keys, with_scores: false) ⇒ Array<String>, Array<[String, Float]>
Return the difference between the first and all successive input sorted sets
821 822 823 |
# File 'lib/redis/commands/sorted_sets.rb', line 821 def zdiff(*keys, with_scores: false) _zsets_operation(:zdiff, *keys, with_scores: with_scores) end |