Redis SUNIONSTORE 命令

Redis SUNIONSTORE 命令

返回 Redis集合(sets)


Redis SUNIONSTORE 命令将给定集合的并集存储在指定的集合 destination 中。如果 destination 已经存在,则将其覆盖。

语法

redis SUNIONSTORE 命令基本语法如下:

redis 127.0.0.1:6379>SUNIONSTORE destination key [key ...]

可用版本

>= 1.0.0

返回值

结果集中的元素数量。

实例

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> SUNIONSTORE key key1 key2
(integer) 5
redis 127.0.0.1:6379> SMEMBERS key
1) "c"
2) "b"
3) "e"
4) "d"
5) "a"

时间复杂度

SUNIONSTORE 命令时间复杂度:O(N),其中N是所有给定集合中的元素总数。

返回 Redis集合(sets)

查看笔记

扫码一下
查看教程更方便