Redis有序集合

集合(Set)

集合中最大的成员数为 2的32次方 – 1 (4294967295, 每个集合可存储40多亿个成员)

添加 sAdd

redis 127.0.0.1:6379> SADD w3ckey redis
(integer) 1
redis 127.0.0.1:6379> SADD w3ckey mongodb
(integer) 1
redis 127.0.0.1:6379> SADD w3ckey mysql
(integer) 1
redis 127.0.0.1:6379> SADD w3ckey mysql
(integer) 0
redis 127.0.0.1:6379> SMEMBERS w3ckey

1) “mysql”
2) “mongodb”
3) “redis”

Sismember 命令判断成员元素是否是集合的成员

redis 127.0.0.1:6379> SADD myset1 “hello”
(integer) 1
redis 127.0.0.1:6379> SISMEMBER myset1 “hello”
(integer) 1
redis 127.0.0.1:6379> SISMEMBER myset1 “world”
(integer) 0

查看是否存在该Key
exists UserListByCourse_154

此条目发表在 redis 分类目录。将固定链接加入收藏夹。

发表评论

电子邮件地址不会被公开。 必填项已用 * 标注

*


*

您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>