Redis 简明教程
Redis - Connections
Redis 连接命令主要用于管理客户端与 Redis 服务器之间的连接。
Example
下面的示例说明客户端如何向 Redis 服务器验证它自己并检查服务器是否在运行。
redis 127.0.0.1:6379> AUTH "password"
OK
redis 127.0.0.1:6379> PING
PONG
Redis Connection Commands
下表列出了一些与 Redis 连接相关的基本命令。
Sr.No |
Command & Description |
1 |
AUTH password 使用给定的密码向服务器进行身份验证 |
2 |
ECHO message 打印给定的字符串 |
3 |
PING 检查服务器是否在运行 |
4 |
QUITCloses the current connection |
5 |
SELECT index 更改当前连接所选的数据库 |