summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDustin Sallings <dustin@spy.net>2009-03-08 22:06:36 -0700
committerDustin Sallings <dustin@spy.net>2009-03-08 22:06:36 -0700
commit92204b71d9298c52e77b7334646e418d7ec59ec6 (patch)
tree1535f3accb809ba29707e6cd71ca1fa7a33defc0
parent267bc5f22c45bac36b8d454cdf633c80690daa3e (diff)
downloadmemcached-92204b71d9298c52e77b7334646e418d7ec59ec6.tar.gz
Reformatted slab stats documentation.
-rw-r--r--doc/protocol.txt33
1 files changed, 17 insertions, 16 deletions
diff --git a/doc/protocol.txt b/doc/protocol.txt
index 40c4090..dba29ab 100644
--- a/doc/protocol.txt
+++ b/doc/protocol.txt
@@ -490,22 +490,23 @@ The server terminates this list with the line
END\r\n
-Name Meaning
-------------------------------
-chunk_size The amount of space each chunk uses. One item will use
- one chunk of the appropriate size.
-chunks_per_page How many chunks exist within one page. A page by
- default is one megabyte in size. Slabs are allocated per
- 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.
-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
- page.
-active_slabs Total number of slab classes allocated.
-total_malloced Total amount of memory allocated to slab pages.
-
+|-----------------+----------------------------------------------------------|
+| Name | Meaning |
+|-----------------+----------------------------------------------------------|
+| chunk_size | The amount of space each chunk uses. One item will use |
+| | one chunk of the appropriate size. |
+| chunks_per_page | How many chunks exist within one page. A page by |
+| | default is one megabyte in size. Slabs are allocated per |
+| | 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. |
+| 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 |
+| | page. |
+| active_slabs | Total number of slab classes allocated. |
+| total_malloced | Total amount of memory allocated to slab pages. |
+|-----------------+----------------------------------------------------------|
Other commands
--------------