summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJean-Francois BUSTARRET <jfbustarret@wat.tv>2007-03-20 22:41:13 +0000
committerJean-Francois BUSTARRET <jfbustarret@wat.tv>2007-03-20 22:41:13 +0000
commit3373cdffa0707688dafce37db6860e195f753173 (patch)
tree34450f1b925d922e7b86fdbfd3718d395dd06b50 /doc
parentaff87796243e6060074e805cc4bc40759715b6f3 (diff)
downloadmemcached-3373cdffa0707688dafce37db6860e195f753173.tar.gz
* Add patch to collect eviction statistics from
Jean-Francois BUSTARRET <jfbustarret@wat.tv>. * Updated docs, added new test cases for t/stats.t git-svn-id: http://code.sixapart.com/svn/memcached/trunk/server@476 b0b603af-a30f-0410-a34e-baf09ae79d0b
Diffstat (limited to 'doc')
-rw-r--r--doc/protocol.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/protocol.txt b/doc/protocol.txt
index a4ee29c..6f61444 100644
--- a/doc/protocol.txt
+++ b/doc/protocol.txt
@@ -346,12 +346,14 @@ total_connections 32u Total number of connections opened since
the server started running
connection_structures 32u Number of connection structures allocated
by the server
-cmd_get 32u Cumulative number of retrieval requests
-cmd_set 32u Cumulative number of storage requests
-get_hits 32u Number of keys that have been requested and
+cmd_get 64u Cumulative number of retrieval requests
+cmd_set 64u Cumulative number of storage requests
+get_hits 64u Number of keys that have been requested and
found present
-get_misses 32u Number of items that have been requested
+get_misses 64u Number of items that have been requested
and not found
+evictions 64u Number of items removed from cache because
+ they passed their expiration time
bytes_read 64u Total number of bytes read by this server
from network
bytes_written 64u Total number of bytes sent by this server to