Redis SINTERSTORE命令

2019-10-16 22:51:43

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

返回值

返回整數,所得集合元素的數量。

返回值

redis SINTERSTORE命令的基本語法如下所示:

redis 127.0.0.1:6379> SINTERSTORE DESTINATION_KEY KEY KEY1..KEYN 

例子

redis 127.0.0.1:6379> SADD myset1 "hello"
(integer) 1
redis 127.0.0.1:6379> SADD myset1 "foo"
(integer) 1
redis 127.0.0.1:6379> SADD myset1 "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> SINTERSTORE myset myset1 myset2
(integer) 1
redis 127.0.0.1:6379> SMEMBERS myset
1) "hello"