Redis - 设置 Sinterstore 命令



Redis SINTERSTORE 命令在所有指定集合相交后,将元素存储在一个集合中。不存在的键被视为空集合。如果有一个键为空集合,则结果集合也是空的(因为集合与空集合的交集总是导致一个空集合)。

返回值

整数回复,表示结果集合中的元素数量。

语法

以下是 Redis SINTERSTORE 命令的基本语法。

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

示例

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" 
redis_sets.htm
广告