redis.zadd("key1", {"a": 1, "b": 2, "c": 3}) redis.zadd("key2", {"c": 3, "d": 4, "e": 5}) result = redis.zinter(["key1", "key2"]) assert result == ["c"]
Returns the intersection between sets.
The keys of the sets to compare.
The weights to apply to the sets.
The aggregation function to apply to the sets.
Whether to include scores in the result.
The number of elements in the resulting set.
Was this page helpful?