English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Redis Monitor Command

Redis Server

The Redis Monitor command is used to print out the commands received by the Redis server in real time, for debugging purposes.

Syntax

The basic syntax of the Redis Monitor command is as follows:

redis 127.0.0.1:6379> MONITOR

Available Version

>= 1.0.0

Return Value

Always returns OK .

Online Examples

redis 127.0.0.1:6379> MONITOR 
OK
1410855382.370791 [0 127.0.0.1:60581】 "info"
1410855404.062722 [0 127.0.0.1:60581】 "get" "a"

 

Redis Server