Latency root-cause advice redis
Human-readable latency analysis with likely causes; pair with LATENCY HISTORY <event>
redis-cli LATENCY DOCTOR
more redis
all 32 commands →
Oldest idle clients
redis-cli CLIENT LIST | tr ' ' '\n' | grep -E 'addr=|age=|idle=' | paste - - - | sort -t= -k3 -rn | head
Cluster health check
redis-cli --cluster check <host>:<port>
Connect to Redis CLI
redis-cli -h redis -p 6379 -a <password>
Redis info all
redis-cli -h redis INFO all
Monitor commands in real-time
redis-cli -h redis MONITOR