PHPmemcached常用指令整理

胡楊615發表於2013-03-17

-p 監聽的埠 
-l 連線的IP地址, 預設是本機  
-d start 啟動memcached服務 
-d restart 重起memcached服務 
-d stop|shutdown 關閉正在執行的memcached服務 
-d install 安裝memcached服務 
-d uninstall 解除安裝memcached服務 
-u 以的身份執行 (僅在以root執行的時候有效) 
-m 最大記憶體使用,單位MB。預設64MB 

-M 記憶體耗盡時返回錯誤,而不是刪除項 
-c 最大同時連線數,預設是1024 
-f 塊大小增長因子,預設是1.25 
-n 最小分配空間,key+value+flags預設是48 
-h 顯示幫助

memcached的基本命令(當memcached 啟動後 用於對memcached管理的資料和本身執行狀態相關的命令):

Command

Description

Example

get

Reads a value

get mykey

set

Set a key unconditionally

set mykey 0 60 5

add

Add a new key

add newkey 0 60 5

replace

Overwrite existing key

replace key 0 60 5

append

Append data to existing key

append key 0 60 15

prepend

Prepend data to existing key

prepend key 0 60 15

incr

Increments numerical key value by given number

incr mykey 2

decr

Decrements numerical key value by given number

decr mykey 5

delete

Deletes an existing key

delete mykey

flush_all

Invalidate specific items immediately

flush_all

Invalidate all items in n seconds

flush_all 900

stats

Prints general statistics

stats

Prints memory statistics

stats slabs

Prints memory statistics

stats malloc

Print higher level allocation statistics

stats items

stats detail

stats sizes

Resets statistics

stats reset

version

Prints server version.

version

verbosity

Increases log level

verbosity

quit

Terminate telnet session

quit

對檢視的資訊的關鍵字中英文對照表

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

當前執行緒數

http://www.php100.com/html/webkaifa/PHP/PHPyingyong/2013/0314/12204.html