Generic Commands
Generic commands are a set of commands used to manage client connections and basic server interactions. These commands don't directly manipulate data, but provide connection management, server status checking, and other basic functionalities.
Command List
AUTH
Used to authenticate the server connection password
CLIENT
Used to get or set client connection related information
ECHO
Prints the given string, mainly used for testing connections
PING
Used to test if the connection to the server is normal
SELECT
Switches to the specified database
Use Cases
Generic commands are typically used immediately after a client connection is established, or when verifying connection status. For example, the PING command is often used for heartbeat detection to ensure the connection remains valid.
For detailed usage and parameters of each command, please refer to the individual command documentation linked above.