linux memcached狀態查詢

2022-09-23 09:48:09 字數 981 閱讀 5848

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 當前執行緒數

linux memcached相關命令

telnet localhost 200001 登陸 stats 檢視狀態 flush all 清理 quit 退出 echo flush all nc localhost 200001 1 資料儲存 假設key為test,value為12345 printf set test 0 0 5 r n1...

linux memcached開機啟動

方法一 在 etc rc.d rc.local 加入以下 usr local memcached bin memcached u root d m 2048 l 192.168.70.1 p 11211 p tmp memcached.pid 所有機器都能訪問 usr local memcached...

linux memcached 安裝和使用

參考文章 memcached詳細 參考文章 memcached深入理解 首先需要安裝libevent 然後安裝memcache 啟動memcached 執行 usr local bin memcached p 設定埠號 11211 m 設定最大記憶體數 64m vv 除錯資訊和錯誤資訊輸出到控制台 ...