Redis - Srem 命令



Redis SREM 命令用于从存储在指定键的集合中删除指定的成员。如果该成员不存在,则该命令返回 0。如果键的存储值未设置,则会返回错误。

返回值

整型回复(已从集合中移除的成员数,不包括不存在的成员)。

语法

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

redis 127.0.0.1:6379> SREM KEY MEMBER1..MEMBERN

示例

redis 127.0.0.1:6379> SADD myset1 "hello" 
(integer) 1 
redis 127.0.0.1:6379> SADD myset1 "world" 
(integer) 1 
redis 127.0.0.1:6379> SADD myset1 "bar" 
(integer) 1 
redis 127.0.0.1:6379> SREM myset1 "hello" 
(integer) 1 
redis 127.0.0.1:6379> SREM myset1 "foo" 
(integer) 0 
redis 127.0.0.1:6379> SMEMBERS myset1 
1) "bar" 
2) "world" 
redis_sets.htm
广告