Redis - 设置 Sunionstore 命令



Redis SUNIONSTORE 命令用于存储所有给定集合的并集产生的集合中的成员。不存在的键被视为空集。

返回值

整数答复,结果集中的元素数。

语法

以下是 Redis SUNIONSTORE 命令的基本语法。

redis 127.0.0.1:6379> SUNIONSTORE DESTINATION 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> SUNIONSTORE myset myset1 myset2 
(integer) 1 
redis 127.0.0.1:6379> SMEMBERS myset 
1) "bar" 
2) "world" 
3) "hello" 
4) "foo"
redis_sets.htm
广告