Redis SCARD 命令
Redis SDIFF 命令返回给定集合之间的差集,不存在的集合 key 将视为空集。
( Redis >= 1.0.0 )
SDIFF 求的是在第一个集合中但不在第二个集合中的元素集
语法
Redis SDIFF 命令语法如下:
127.0.0.1:6379> SDIFF FIRST_KEY OTHER_KEY1..OTHER_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> SDIFF site site_t 1) "www.twle.cn" 127.0.0.1:6379> SDIFF site_t site 1) "xiaomi.com"