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
721 722 723 |
# File 'lib/redis/commands/sorted_sets.rb', line 721 def zdiff(*keys, with_scores: false) _zsets_operation(:zdiff, *keys, with_scores: with_scores) end |