PHP memcached 常用指令 整理

2021-06-13 03:31:23 字數 2558 閱讀 6794

-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 顯示幫助

command

description

example

getreads a value

get mykey

setset a key unconditionally

set mykey 0 60 5

addadd a new key

add newkey 0 60 5

replace

overwrite existing key

replace key 0 60 5

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

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

pidmemcache伺服器的程序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

當前執行緒數

PHP memcached 應用示例

php memcached 應用示例 add key,val,exp 0 往 memcached 中寫入物件,key 是物件的唯一識別符號,val 是寫入的物件資料,exp 為過期時間,單位為秒,預設為不限時間 get key 從 memcached 中獲取物件資料,通過物件的唯一識別符號 key ...

關於php memcached的使用

memcached 搭建環境的幾點關鍵 2.php.ini 開啟memcached服務 4在進行 win 環境 安裝時候 特別是win10 cmd 執行 memcached d install 會報錯 failed to install service or service already inst...

php memcached的安裝與應用

一 memcached的相關介紹 檔案以及資料庫檢索的結果等。使用memcache的 一般流量都是比較大的,為了緩解資料庫的壓力,讓memcache作為乙個快取區域,把部分資訊儲存在記憶體中,在前端能 夠迅速的進行訪問。2 memcache win32的安裝和php中的配置 a.安裝包在上面的資料夾...