Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Redis Server: MONITOR

MONITOR

Redis MONITOR command is a debugging command that streams back every command processed by the Redis server. The ability to see all the requests processed by the server is useful in order to spot bugs in an application both when using Redis as a database and as a distributed caching system.

Syntax:

MONITOR

Available since

1.0.0.

Return Value

Non-standard return value just dumps the received commands in an infinite flow.

Example: Redis MONITOR

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"

Previous: LASTSAVE
Next: ROLE