常见管理命令

info

类似redisinfo输出,能获取最常用的系统运行状态,详情

tendisadmin

用于管理实例的运行状态控制,详情

show processlist

用于描述所有线程的工作状态,详情

monitor

类似于redis中monitor的功能。

集群管理命令

cluster

支持Redis的集群管理命令,包括:

  • cluster nodes
  • cluster info
  • cluster meet
  • cluster addslot
  • cluster delslot
  • cluster replicate
  • cluster countkeysinslot
  • cluster keyslot
  • cluster flushslot
  • cluster forget
  • cluster getkeysinslot
  • cluster slaves
  • cluster bumpepoch
  • cluster set-config-epoch
  • cluster reset
  • cluster saveconfig
  • cluster count-failure-reports
  • cluster myid
  • cluster failover
  • cluster clear

此外,新增了以下两个命令

慢查询

配置文件

  1. slowlog: 慢查询的文件路径
  2. slowlog-log-slower-than:表示超过多少微秒会记录慢查询,默认100000微妙(100毫秒),可通过config set动态修改

慢查询的内容如下

  1. # Id: 3
  2. # Timestamp: 1587107891128222
  3. # Time: 200417 15:18:11
  4. # Host: 127.0.0.1:51271
  5. # Db: 0
  6. # Query_time: 2001014
  7. tendisadmin sleep 2