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"