Redis Sismember 命令
Redis 教程
· 2019-03-07 17:41:26
Redis Sismember 命令判断成员元素是否是集合的成员。
语法
redis Sismember 命令基本语法如下:
redis 127.0.0.1:6379> SISMEMBER KEY VALUE
可用版本
>= 1.0.0
返回值
如果成员元素是集合的成员,返回 1 。 如果成员元素不是集合的成员,或 key 不存在,返回 0 。
实例
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
点击查看所有 Redis 教程 文章: https://www.codercto.com/courses/l/33.html
Scalable Internet Architectures
Theo Schlossnagle / Sams Publishing / 2006-7-31 / USD 49.99
As a developer, you are aware of the increasing concern amongst developers and site architects that websites be able to handle the vast number of visitors that flood the Internet on a daily basis. Sc......一起来看看 《Scalable Internet Architectures》 这本书的介绍吧!