关键词

Redis SUNION命令

Redis SUNION 命令返回一个集合的全部成员,该集合是所有给定集合的并集。

可用版本

SUNION 命令可用版本:>= 1.0.0

语法

Redis SUNION 命令的基本语法如下:
SUNION key [key ...]    

返回值

并集成员的列表。

命令演示

127.0.0.1:6379> SADD website www.lmcjl.com www.baidu.com www. #添加一个集合成员
(integer) 2
127.0.0.1:6379> SADD site git python svn docker
(integer) 4
127.0.0.1:6379> SUNION website site #求并集
1) "docker"
2) "www.lmcjl.com"
3) "svn"
4) "git"
5) "www.baidu.com"
6) "python"

本文链接:http://task.lmcjl.com/news/13941.html

展开阅读全文