Redis - Set 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" 
redis_sets.htm
广告