Redis EXISTS命令

 
Redis EXISTS 命令用于检查指定的一个 key 或者多个 key 是否存在。

可用版本

EXISTS 命令可用版本:>= 1.0.0

语法格式

Redis EXISTS 命令的基本语法如下:
127.0.0.1:6379> EXISTS key [key ...]

返回值

命令的返回值代表 key 存在的数量,如果被检查的 key 都不存则返回 0。

命令示例

127.0.0.1:6379> SET webname www.biancheng.net
OK
127.0.0.1:6379> SET weburl www.biancheng.net
OK
127.0.0.1:6379> EXISTS weburl webname
(integer) 2
127.0.0.1:6379> EXISTS web
(integer) 0