module Redis::Commands::SortedSets
def zinter(*args)
-
(Array
-, Array<[String, Float]>)
Parameters:
-
options
(Hash
) -- -
keys
(String, Array
) -- one or more keys to intersect
Other tags:
- Example: Retrieve the intersection of `2*zsetA` and `1*zsetB`, and their scores -
Example: Retrieve the intersection of `2*zsetA` and `1*zsetB` -
def zinter(*args) _zsets_operation(:zinter, *args) end