Redis MONITOR 命令
Redis MONITOR 命令用于实时打印出 Redis 服务器接收到的命令
( Redis >= 1.0.0 )
本地开发调试用
语法
Redis MONITOR 命令语法如下:
127.0.0.1:6379> MONITOR
返回值
总是返回 OK 。
范例
新开一个 Redis 客户端(redis-cli-2)
redis-cli -p 6379
然后输入以下命令开始监控
redis-cli-2> MONITOR OK
在 Redis 主客户端中输入
127.0.0.1:6379> FLUSHALL OK 127.0.0.1:6379> SET site "www.twle.cn" OK 127.0.0.1:6379> GET site "www.twle.cn"
则会在 redis-cli-2
中看到如下输出
redis-cli-2> MONITOR OK 1503401027.463295 [0 127.0.0.1:57035] "FLUSHALL" 1503401037.671888 [0 127.0.0.1:57035] "SET" "site" "www.twle.cn" 1503401040.729759 [0 127.0.0.1:57035] "GET" "site"