PING [message]
命令说明
可用版本:>=1.0.0
时间复杂度:O(1)
如果没有指定参数,返回PONG,否则返回参数内容本身。
该命令通常用于测试与服务器的连接是否仍然生效,或者用于测量服务的延迟值。
返回值
简单的字符串。
例子
redis> PING
PONG
redis> PING "hello Beijing"
"hello Beijing"
redis> PING # 关闭Redis服务,返回连接错误
Could not connect to Redis at 127.0.0.1:6379: Connection refused