Redis 集合 Sunion 命令

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"

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程