X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/cc1db901e934826ce273b19a3f257d235719046f..5436146c8dcd95c5ef3809f2830fb9c08edc4177:/doc/MonitorCommand.html diff --git a/doc/MonitorCommand.html b/doc/MonitorCommand.html index 645968e6..1abe72b6 100644 --- a/doc/MonitorCommand.html +++ b/doc/MonitorCommand.html @@ -16,7 +16,7 @@
MONITOR is a debugging command that outputs the whole sequence of commandsreceived by the Redis server. is very handy in order to understandwhat is happening into the database. This command is used directlyvia telnet.+ #sidebar ControlCommandsSidebar
MONITOR is a debugging command that outputs the whole sequence of commandsreceived by the Redis server. is very handy in order to understandwhat is happening into the database. This command is used directlyvia telnet.
% telnet 127.0.0.1 6379 Trying 127.0.0.1... @@ -52,8 +52,8 @@ set foo_a 5 hello
The ability to see all the requests processed by the server is useful in orderto spot bugs in the application both when using Redis as a database and asa distributed caching system.
In order to end a monitoring session just issue a QUIT command by hand.-