What's new in Valkey 9.0? Discover new features and improvements. Read the announcement.

SINTER

Returns the intersect of multiple sets.

Usage
SINTER key ...
Complexity
O(N*M) worst case where N is the cardinality of the smallest set and M is the number of sets.
Since
1.0.0
ACL Categories
@read, @set, @slow
Command flags
READONLY

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).

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"

Replies

RESP2

Array reply: a list with the members of the resulting set.

RESP3

Set reply: the resulting set.