📅  最后修改于: 2020-11-26 07:06:35             🧑  作者: Mango
Redis连接命令基本上用于管理与Redis服务器的客户端连接。
以下示例说明了客户端如何向Redis服务器进行身份验证并检查服务器是否正在运行。
redis 127.0.0.1:6379> AUTH "password"
OK
redis 127.0.0.1:6379> PING
PONG
下表列出了一些与Redis连接有关的基本命令。
Sr.No | Command & Description |
---|---|
1 | AUTH password
Authenticates to the server with the given password |
2 | ECHO message
Prints the given string |
3 | PING
Checks whether the server is running or not |
4 | QUIT
Closes the current connection |
5 | SELECT index
Changes the selected database for the current connection |