Redis SINTER 命令

返回上一级

Redis SINTER 命令返回给定所有给定集合的交集。

( Redis >= 1.0.0 )


不存在的集合 key 被视为空集

当给定集合当中有一个空集时,结果也为空集(根据集合运算定律)。

语法

Redis SINTER 命令语法如下:

127.0.0.1:6379> SINTER KEY KEY1..KEYN

返回值

交集成员的列表。

范例

127.0.0.1:6379> FLUSHALL
OK
127.0.0.1:6379> SADD site "twle.cn"
(integer) 1
127.0.0.1:6379> SADD site "www.twle.cn"
(integer) 1
127.0.0.1:6379> SADD site "qq.com"
(integer) 1
127.0.0.1:6379> SADD site_t "twle.cn"
(integer) 1
127.0.0.1:6379> SADD site_t "qq.com"
(integer) 1
127.0.0.1:6379> SADD site_t "xiaomi.com"
(integer) 1
127.0.0.1:6379> SINTER site site_t
1) "qq.com"
2) "twle.cn"

返回上一级

Redis 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.