Redis SINTER命令

2019-10-16 22:51:42

Redis SINTER命令所有指定集合交集後得到一組元素。鍵不存在被認為是空集。鍵是一個空集,將得到的集合也是空的(因為一個空集的交集總是產生一個空集)。

返回值

返回陣列,列表與所得組的成員。

語法

Redis SINTER命令的基本語法如下所示:

redis 127.0.0.1:6379> SINTER KEY KEY1..KEYN 

例子

redis 127.0.0.1:6379> SADD myset "hello"
(integer) 1
redis 127.0.0.1:6379> SADD myset "foo"
(integer) 1
redis 127.0.0.1:6379> SADD myset "bar"
(integer) 1
redis 127.0.0.1:6379> SADD myset2 "hello"
(integer) 1
redis 127.0.0.1:6379> SADD myset2 "world"
(integer) 1
redis 127.0.0.1:6379> SINTER myset myset2
1) "hello"