歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> 關於Linux >> linux memcached狀態查詢

linux memcached狀態查詢

日期:2017/3/1 15:40:46   编辑:關於Linux
linux memcached狀態查詢 如何查看memcache服務器端版本: ./memcached -h memcache的運行狀態可以方便的用 stats 命令顯示。 首先用telnet 127.0.0.1 11211這樣的命令連接上memcache,然後直接輸入stats就可以得到當前memcache的狀態。 這些狀態的說明如下: pid memcache服務器的進程ID uptime 服務器已經運行的秒數 time 服務器當前的unix時間戳 version memcache版本 pointer_size 當前操作系統的指針大小(32位系統一般是32bit) rusage_user 進程的累計用戶時間 rusage_system 進程的累計系統時間 curr_items 服務器當前存儲的items數量 total_items 從服務器啟動以後存儲的items總數量 bytes 當前服務器存儲items占用的字節數 curr_connections 當前打開著的連接數 total_connections 從服務器啟動以後曾經打開過的連接數 connection_structures 服務器分配的連接構造數 cmd_get get命令(獲取)總請求次數 cmd_set set命令(保存)總請求次數 get_hits 總命中次數 get_misses 總未命中次數 evictions 為獲取空閒內存而刪除的items數(分配給memcache的空間用滿後需要刪除舊的items來得到空間分配給新的items) bytes_read 總讀取字節數(請求字節數) bytes_written 總發送字節數(結果字節數) limit_maxbytes 分配給memcache的內存大小(字節) threads 當前線程數
Copyright © Linux教程網 All Rights Reserved