sinter.3valkey - Man Page
Returns the intersect of multiple sets.
Synopsis
SINTER
key [key...]
Description
Returns the members of the set resulting from the intersection of all the given sets.
For example:
key1 = {a,b,c,d} key2 = {c} key3 = {a,c,e} SINTER key1 key2 key3 = {c}
Keys that do not exist are considered to be empty sets. With one of the keys being an empty set, the resulting set is also empty (since set intersection with an empty set always results in an empty set).
Reply
Resp2
valkey-protocol(7) Array reply: a list with the members of the resulting set.
Resp3
valkey-protocol(7) Set reply: the resulting set.
Complexity
O(N*M) worst case where N is the cardinality of the smallest set and M is the number of sets.
Acl Categories
@read @set @slow
History
- Available since: 1.0.0
Examples
127.0.0.1:6379> SADD key1 "a" (integer) 1 127.0.0.1:6379> SADD key1 "b" (integer) 1 127.0.0.1:6379> SADD key1 "c" (integer) 1 127.0.0.1:6379> SADD key2 "c" (integer) 1 127.0.0.1:6379> SADD key2 "d" (integer) 1 127.0.0.1:6379> SADD key2 "e" (integer) 1 127.0.0.1:6379> SINTER key1 key2 1) "c"
See Also
sadd(3valkey), scard(3valkey), sdiff(3valkey), sdiffstore(3valkey), sintercard(3valkey), sinterstore(3valkey), sismember(3valkey), smembers(3valkey), smismember(3valkey), smove(3valkey), spop(3valkey), srandmember(3valkey), srem(3valkey), sscan(3valkey), sunion(3valkey), sunionstore(3valkey)