summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDustin Sallings <dustin@spy.net>2009-03-08 22:23:25 -0700
committerDustin Sallings <dustin@spy.net>2009-03-08 22:23:25 -0700
commita3556b4ef7278d8793d0e58ae8dbcb6208692f56 (patch)
tree0968ee5312d3605ce12c85c708ac03b96cc639f0
parent92204b71d9298c52e77b7334646e418d7ec59ec6 (diff)
downloadmemcached-a3556b4ef7278d8793d0e58ae8dbcb6208692f56.tar.gz
Document new slab stats.
-rw-r--r--doc/protocol.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/protocol.txt b/doc/protocol.txt
index dba29ab..e4804c4 100644
--- a/doc/protocol.txt
+++ b/doc/protocol.txt
@@ -500,6 +500,14 @@ END\r\n
| | page, then broken into chunks. |
| total_pages | Total number of pages allocated to the slab class. |
| total_chunks | Total number of chunks allocated to the slab class. |
+| get_hits | Total number of get requests serviced by this class. |
+| cmd_set | Total number of set requests storing data in this class. |
+| delete_hits | Total number of successful deletes from this class. |
+| incr_hits | Total number of incrs modifying this class. |
+| decr_hits | Total number of decrs modifying this class. |
+| cas_hits | Total number of CAS commands modifying this class. |
+| cas_badval | Total number of CAS commands that failed to modify a |
+| | value due to a bad CAS id. |
| used_chunks | How many chunks have been allocated to items. |
| free_chunks | Chunks not yet allocated to items, or freed via delete. |
| free_chunks_end | Number of free chunks at the end of the last allocated |