COMMAND arg1 arg2 ... [node ID] in order to easily get the information of the specified node. The node ID can be obtained from the Node Management page in the TencentDB for Redis® console or through the cluster nodes command.info [section] [node ID]
server: The general information of a Redis server.clients: The information of connected clients.memory: The information of memory usage.persistence: The information of RDB and AOF.stats: The general statistics.replication: The information of master/replica replication.cpu: The information of CPU usage.commandstats: The statistics of Redis commands.cluster: The information of a Redis cluster.keyspace: statistics of databaseall: Returns all the information.default: Returns the default information.INFO command with section being server:
SLOWLOG GET to return the entries in slow logs. You can specify to return only the last N entries and pass other parameters to this command, such as SLOWLOG GET 10.slowlog get [Redis node ID]slowlog get [slow log quantity][Redis node ID]

flushdb [Redis node ID]
cd-crs-rhxxxay.sql.tencentcdb.com:24894> flushdb f2f3c387b9fab0e67af02039845c60278b13bed0OK
ping [message] [node ID]
[ crs-rh**** | DB0 ] # PING "PONG" f2f3c3************************PONG[ crs-rh**** | DB0 ] # PING "hello world"hello world
keys [pattern] [Redis node ID]
keys a* f2f3c3*************************

scan cursor [MATCH pattern] [COUNT count] [Redis node ID]
[ crs-******** | DB0 ] # scan 0 f2f3c3*************************1) "2"
imonitor [Redis node ID]
imonitor 3dba154c67925520ef1a1e2c41d8cc22d7f4****+OK+1680504260.729707 [0 127.0.0.1:6379] "auth" ******+1680504260.730070 [0 127.0.0.1:6379] "info" "commandstats"+1680504262.243004 [0 127.0.0.1:6379] "AUTH" ******
Feedback