Redis 集合 Sunion 命令
Redis SUNION 命令用于获取所有给定集合的并集的成员。不存在的键被视为空集。
返回值
数组回复,包含结果集的成员。
语法
Redis SUNION 命令的基本语法如下。
redis 127.0.0.1:6379> SUNION 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> SUNION myset1 myset2
1) "bar"
2) "world"
3) "hello"
4) "foo"