redis超时排查
http://redisbook.com/preview/slowlog/content.html
-
- (integer) 4 # 日志的唯一标识符(uid)
- (integer) 1378781447 # 命令执行时的 UNIX 时间戳
- (integer) 180667 # 命令执行的时长,以微秒计算
1秒=1000毫秒 180667 就是180S
Unix时间戳转换,可以算出真实执行时间
date "+%Y-%m-%d %H:%M:%S" -d @1378781447