Redis connection
The Redis connection command is mainly used to connect to the redis service.
Example
The following example demonstrates how the client connects to the redis service through password verification and detects whether the service is running:
redis 127.0.0.1:6379> AUTH "password" OK redis 127.0.0.1:6379> PING PONG
Redis connection command
The following table lists the basic commands for redis connection:
Serial number | Command and description |
---|---|
1 | AUTH password Verify whether the password is correct |
2 | ECHO message Print string |
3 | PING Check whether the service is running |
4 | QUIT Close the current connection |
5 | SELECT index Switch to the specified database |