Redis SUNION 命令
Redis SUNION 命令返回给定集合的并集。不存在的集合 key 被视为空集。
1. 语法
redis SUNION 命令基本语法如下:
SUNION KEY KEY1..KEYN
2. 可用版本
>= 1.0.0
3. 返回值
并集成员的列表。
4. 范例
redis 127.0.0.1:6379> SADD key1 "a" (integer) 1 redis 127.0.0.1:6379> SADD key1 "b" (integer) 1 redis 127.0.0.1:6379> SADD key1 "c" (integer) 1 redis 127.0.0.1:6379> SADD key2 "c" (integer) 1 redis 127.0.0.1:6379> SADD key2 "d" (integer) 1 redis 127.0.0.1:6379> SADD key2 "e" (integer) 1 redis 127.0.0.1:6379> SUNION key1 key2 1) "a" 2) "c" 3) "b" 4) "e" 5) "d"
Redis SUNIONSTORE 命令将给定集合的并集存储在指定的集合 destination 中。如果 destination 已经存在,则将其覆盖。语法:redis SUNIONSTORE 命令基本语法如下:SUNIONSTORE destination key [key ...] 。返回值:结果集中的元素数量。