Redis 集合 Sunionstore命令
Redis SUNIONSTORE 命令用于将给定集合的并集存储为一个新的集合。不存在的键被视为空集合。
返回值
整数回复,表示结果集中的元素数目。
语法
以下是Redis SUNIONSTORE 命令的基本语法。
redis 127.0.0.1:6379> SUNIONSTORE DESTINATION KEY KEY1..KEYN
示例
redis 127.0.0.1:6379> SADD myset1 "hello"
(integer) 1
redis 127.0.0.1:6379> SADD myset1 "world"
(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 "bar"
(integer) 1
redis 127.0.0.1:6379> SUNIONSTORE myset myset1 myset2
(integer) 1
redis 127.0.0.1:6379> SMEMBERS myset
1) "bar"
2) "world"
3) "hello"
4) "foo"