Memcache是danga.com的一個開源項目,它是一個高性能的分佈式的內存對象緩存系統,經過在內存裏維護一個統一的巨大的Hash表,可以用來存儲各類格式的數據。
查看當前的memcache鏈接數:
[root@mem1 ~]# netstat -n | grep :11211 | wc -l
15752
查看默認容許的鏈接數:
[root@mem1 ~]# cat /etc/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
/usr/local/bin/memcached -d -m 15360 -u root -l 172.20.1.54 -p 11211 -c 40960
/usr/local/bin/memcached -d -m 512 -u root -l 172.20.1.54 -p 11212 -c 10000
這裏設置的11211端口默認鏈接數是40960緩存
在網絡上查到資料, Memcache也有本身的查看工具:服務器
如何查看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 | 當前線程數 |