位置:首頁 > 數據庫 > Redis教學 > 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"