您好,登錄后才能下訂單哦!
這篇文章主要介紹“啟動(dòng)Memcache的常用參數(shù)以及telnet命令詳解”,在日常操作中,相信很多人在啟動(dòng)Memcache的常用參數(shù)以及telnet命令詳解問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”啟動(dòng)Memcache的常用參數(shù)以及telnet命令詳解”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
1、啟動(dòng)Memcache 常用參數(shù)
復(fù)制代碼 代碼如下:
-p <num> 監(jiān)聽(tīng)的TCP端口(默認(rèn): 11211)
-U <num> UDP監(jiān)聽(tīng)端口 (默認(rèn): 11211, 0 時(shí)關(guān)閉)
-d 以守護(hù)進(jìn)程方式運(yùn)行
-u <username> 運(yùn)行運(yùn)行 Memcached的賬戶(hù) 非root用戶(hù)
-m <num> 最大的內(nèi)存使用單位是MB 默認(rèn)是64MB
-c <num> 軟連接數(shù)量默認(rèn)是1024
-v 輸出警告和錯(cuò)誤信息
-vv 打印客戶(hù)端的請(qǐng)求和返回信息
-h 打印幫助信息
-i 打印memcached和libevent的版權(quán)信息
-l <ip_addr> 綁定地址 (默認(rèn):所有都允許,無(wú)論內(nèi)外網(wǎng)或者本機(jī)更換IP,有安全隱患,若設(shè)置為127.0.0.1就只能本機(jī)訪(fǎng)問(wèn))
-P <file> 將PID寫(xiě)入文件<file>,這樣可以使得后邊進(jìn)行快速進(jìn)程終止, 需要與 -d 一起使用
2、Memcache telnet 常用命令
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 |
3、stats命令詳解
pid | memcache服務(wù)器的進(jìn)程ID |
uptime | 服務(wù)器已經(jīng)運(yùn)行的秒數(shù) |
time | 服務(wù)器當(dāng)前的unix時(shí)間戳 |
version | memcache版本 |
pointer_size | 當(dāng)前操作系統(tǒng)的指針大?。?2位系統(tǒng)一般是32bit) |
rusage_user | 進(jìn)程的累計(jì)用戶(hù)時(shí)間 |
rusage_system | 進(jìn)程的累計(jì)系統(tǒng)時(shí)間 |
curr_items | 服務(wù)器當(dāng)前存儲(chǔ)的items數(shù)量 |
total_items | 從服務(wù)器啟動(dòng)以后存儲(chǔ)的items總數(shù)量 |
bytes | 當(dāng)前服務(wù)器存儲(chǔ)items占用的字節(jié)數(shù) |
curr_connections | 當(dāng)前打開(kāi)著的連接數(shù) |
total_connections | 從服務(wù)器啟動(dòng)以后曾經(jīng)打開(kāi)過(guò)的連接數(shù) |
connection_structures | 服務(wù)器分配的連接構(gòu)造數(shù) |
cmd_get | get命令(獲?。┛傉?qǐng)求次數(shù) |
cmd_set | set命令(保存)總請(qǐng)求次數(shù) |
get_hits | 總命中次數(shù) |
get_misses | 總未命中次數(shù) |
evictions | 為獲取空閑內(nèi)存而刪除的items數(shù)(分配給memcache的空間用滿(mǎn)后需要?jiǎng)h除舊的items來(lái)得到空間分配給新的items) |
bytes_read | 總讀取字節(jié)數(shù)(請(qǐng)求字節(jié)數(shù)) |
bytes_written | 總發(fā)送字節(jié)數(shù)(結(jié)果字節(jié)數(shù)) |
limit_maxbytes | 分配給memcache的內(nèi)存大小(字節(jié)) |
threads | 當(dāng)前線(xiàn)程數(shù) |
4、Memcache 啟動(dòng)tips
a:監(jiān)聽(tīng)內(nèi)網(wǎng)地址
b:修改默認(rèn)端口號(hào)
c:設(shè)置最大連接數(shù),最大內(nèi)存占用數(shù)
到此,關(guān)于“啟動(dòng)Memcache的常用參數(shù)以及telnet命令詳解”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。