memcache概述:
memcache
是乙個高效能的
分布式的記憶體物件快取系統,通過在
記憶體裡維護乙個統一的巨大的
hash表
,它能夠用來儲存各種
格式的資料,包括影象、
、檔案以及資料庫
檢索的結果等。簡單的說就是將資料呼叫到記憶體中,然後從記憶體中讀取,從而大大提高讀取速度。
memcached是以守護程式方式執行於乙個或多個
伺服器中,隨時會接收
客戶端的
連線和操作。
memcache安裝:
1:libevent
與memcache
軟體包。
libevent
memcache:2:
解壓,編譯
libevent
。
# tar -zxvf libevent-2.1.3-alpha.tar.gz3:解壓,編譯# cd libevent-2.1.3-alpha
# ./configure -prefix=/usr/local/memcache/libevent
# make && make install
memcache
。
# cd ../開啟memcache,並連線測試:# tar -zxvf memcached-1.4.15.tar.gz
# cd memcached-1.4.15
# ./configure --prefix=/usr/local/memcache/ --with-libevent=/usr/local/memcache/libevent
# make && make install
以守護程序模式啟動
memcache
# /usr/local/memcache/bin/memcached -d -l 192.168.189.129 -p 11211 -m 2048 -u root檢視memcache是否開啟:
客戶端連線測試(使用telnet)
#telnet192.168.189.129 11211
能連線上,說明
memcache
成功啟用,可使用
stats
命令檢視當前狀態
#stats
stat pid 29563
stat uptime 228
stat time 1377137834
stat version 1.4.15
stat libevent 2.1.3-alpha
stat pointer_size 64
stat rusage_user 0.000999
stat rusage_system 0.000999
stat curr_connections 5
stat total_connections 6
stat connection_structures 6
stat reserved_fds 20
stat cmd_get 0
stat cmd_set 0
stat cmd_flush 0
stat cmd_touch 0
stat get_hits 0
stat get_misses 0
stat delete_misses 0
stat delete_hits 0
stat incr_misses 0
stat incr_hits 0
stat decr_misses 0
stat decr_hits 0
stat cas_misses 0
stat cas_hits 0
stat cas_badval 0
stat touch_hits 0
stat touch_misses 0
stat auth_cmds 0
stat auth_errors 0
stat bytes_read 7
stat bytes_written 0
stat limit_maxbytes 2147483648
stat accepting_conns 1
stat listen_disabled_num 0
stat threads 4
stat conn_yields 0
stat hash_power_level 16
stat hash_bytes 524288
stat hash_is_expanding 0
stat bytes 0
stat curr_items 0
stat total_items 0
stat expired_unfetched 0
stat evicted_unfetched 0
stat evictions 0
stat reclaimed 0
end
Memcached安裝與初步使用
wget 二 解壓 安裝 tar zxvf libevent 2.0.17 stable.tar.gz cd libevent 2.0.17 configure prefix usr make make install 在上面 configure 指定一下安裝的路徑,到後面用得到,也方便查詢。三 檢...
Window下memcached安裝與測試
2 安裝 1 注意install.bat檔案中binpath需要修改為memcached.exe所在的目錄,displayname為服務名,不建議修改,如果修改後 其它的bat檔案也需要做相應的修改 2 注意避免直接雙擊被防毒軟體給攔截,最好是進入dos命令列執行 建立服務指令碼 install.b...
memcached 在linux安裝與基本操作
一 安裝 root master opt tar zxvf memcached 1.4.25.tar.gz root master opt mv memcached 1.4.25 memcached root master opt cd memcached root master memcached...