summaryrefslogtreecommitdiff
path: root/doc/MonitorCommand.html
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2009-11-28 20:48:53 +0100
committerantirez <antirez@gmail.com>2009-11-28 20:48:53 +0100
commit37be27653817f0c4c18d695ceea082e0bb7bf462 (patch)
treea2508a1e7066c1a6b12cd875820414f288038039 /doc/MonitorCommand.html
parent03a37888f6581ec46d5eaee8c77b18b7926d2ca3 (diff)
downloadredis-37be27653817f0c4c18d695ceea082e0bb7bf462.tar.gz
enable kqueue/kevent only for Mac OS X 10.6.x as it seems that 10.5.x has a broken implementation of this syscalls.
Diffstat (limited to 'doc/MonitorCommand.html')
-rw-r--r--doc/MonitorCommand.html63
1 files changed, 0 insertions, 63 deletions
diff --git a/doc/MonitorCommand.html b/doc/MonitorCommand.html
deleted file mode 100644
index 645968e68..000000000
--- a/doc/MonitorCommand.html
+++ /dev/null
@@ -1,63 +0,0 @@
-
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
-<html>
- <head>
- <link type="text/css" rel="stylesheet" href="style.css" />
- </head>
- <body>
- <div id="page">
-
- <div id='header'>
- <a href="index.html">
- <img style="border:none" alt="Redis Documentation" src="redis.png">
- </a>
- </div>
-
- <div id="pagecontent">
- <div class="index">
-<!-- This is a (PRE) block. Make sure it's left aligned or your toc title will be off. -->
-<b>MonitorCommand: Contents</b><br>&nbsp;&nbsp;<a href="#MONITOR">MONITOR</a><br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="#Return value">Return value</a><br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="#See also">See also</a>
- </div>
-
- <h1 class="wikiname">MonitorCommand</h1>
-
- <div class="summary">
-
- </div>
-
- <div class="narrow">
- <h1><a name="MONITOR">MONITOR</a></h1><blockquote>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.</blockquote>
-<pre class="codeblock python" name="code">
-% telnet 127.0.0.1 6379
-Trying 127.0.0.1...
-Connected to segnalo-local.com.
-Escape character is '^]'.
-MONITOR
-+OK
-monitor
-keys *
-dbsize
-set x 6
-foobar
-get x
-del x
-get x
-set key_x 5
-hello
-set key_y 5
-hello
-set key_z 5
-hello
-set foo_a 5
-hello
-</pre><blockquote>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.</blockquote>
-<blockquote>In order to end a monitoring session just issue a QUIT command by hand.</blockquote>
-<h2><a name="Return value">Return value</a></h2><b>Non standard return value</b>, just dumps the received commands in an infinite flow.<h2><a name="See also">See also</a></h2>
-<ul><li> <a href="InfoCommand.html">INFO</a></li></ul>
- </div>
-
- </div>
- </div>
- </body>
-</html>
-