Redis 集合 Sinterstore 命令
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"