Redis SINTERSTORE 命令

Redis SINTERSTORE 命令

返回 Redis集合(sets)


Redis SINTERSTORE 命令将给定集合之间的交集存储在指定的集合中。如果指定的集合已经存在,则将其覆盖。

语法

redis SINTERSTORE 命令基本语法如下:

redis 127.0.0.1:6379> SINTERSTORE DESTINATION_KEY KEY KEY1..KEYN

可用版本

>= 1.0.0

返回值

返回存储交集的集合的元素数量。

示例

redis 127.0.0.1:6379> SADD myset1 "hello"
(integer) 1
redis 127.0.0.1:6379> SADD myset1 "foo"
(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 "world"
(integer) 1
redis 127.0.0.1:6379> SINTERSTORE myset myset1 myset2
(integer) 1
redis 127.0.0.1:6379> SMEMBERS myset
1) "hello"

时间复杂度

SINTERSTORE 命令时间复杂度: O(N*M)是最坏情况,其中N是最小集合的基数,M是集合的个数。

返回 Redis集合(sets)

查看笔记

扫码一下
查看教程更方便