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.cdsy.xyz OK 127.0.0.1:6379> SET weburl www.cdsy.xyz OK 127.0.0.1:6379> EXISTS weburl webname (integer) 2 127.0.0.1:6379> EXISTS web (integer) 0