Memcached是一套 開源的高性能分佈式內存對象緩存系統,它將全部的數據 都存儲在內存中,由於在內存中會統一維護一張巨大的Hash表,因此支持任意存儲類型的數據。php
Memcached是典型的C/S架構,所以須要安裝Memcached服務端與MemcachedAPI客戶端。Memcached服務端是用C語言編寫的,而Memcached API客戶端能夠用任何語言來編寫。經常使用典型架構如圖所示:
sql
當Web客戶端發送請求到Web服務器的應用程序時,應用程序會經過調用MemcachedAPI客戶端程序庫接口鏈接Memcached服務器,進而查詢數據。若是此時的Web客戶端所求的數據已經在Memcached服務端中緩存,則Memcached服務端會將數據返回給Web客戶端;若是數據不存在,則會將Web客戶端請求發送至Mysql數據庫,由數據庫將請求的數據返回給Memcached以及Web客戶端,與此同時Memcached服務器也會將數據進行保存,以方便用戶下次請求使用。數據庫
1.安裝Libeventvim
[root@localhost Mem]# tar zxvf libevent-2.1.8-stable.tar.gz -C /opt/ [root@localhost Mem]# cd /opt/libevent-2.1.8-stable/ [root@localhost libevent-2.1.8-stable]# ./configure --prefix=/usr/local/libevent [root@localhost libevent-2.1.8-stable]#make && make install
2.安裝Memcached瀏覽器
[root@localhost Mem]# tar zxvf memcached-1.5.6.tar.gz -C /opt/ [root@localhost Mem]# cd /opt/memcached-1.5.6/ [root@localhost Mem]# ./configure \ --prefix=/usr/local/memcached \ --with-libevent=/usr/local/libevent/ [root@localhost memcached-1.5.6]# make && make install [root@localhost memcached-1.5.6]# ln -s /usr/local/memcached/bin/* /usr/local/bin/ #軟連接
3.開啓memcached服務緩存
[root@localhost memcached-1.5.6]# memcached -d -m 32m -p 11211 -u root [root@localhost memcached-1.5.6]# netstat -anpt | grep memc tcp 0 0 0.0.0.0:11211 0.0.0.0:* LISTEN 11330/memcached tcp6 0 0 :::11211 :::* LISTEN 11330/memcached
參數註解: -d 以守護進程的方式運行memcached服務 -m 爲memcached分配32MB的內存 -p 端口號 -u 指定運行的用戶帳號
4.驗證數據操做服務器
[root@localhost memcached-1.5.6]# telnet 127.0.0.1 11211 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. add username 0 0 7 #添加鍵值數據 1234567 STORED get username #查看數據 VALUE username 0 7 1234567 END flush_all #清除全部緩存數據 OK get username END #清楚成功 quit #退出 Connection closed by foreign host.
1.安裝客戶端--須要在LAMP架構的基礎上進行,這裏再也不詳細編寫LNMP架構過程。架構
[root@localhost ~]# yum install autoconf -y [root@localhost LAMP-7]# tar zxvf memcache-2.2.7.tgz -C /opt/ [root@localhost LAMP-7]# cd /opt/memcache-2.2.7/ [root@localhost memcache-2.2.7]# /usr/local/php5/bin/phpize #增長爲PHP的模塊後再對memcache進行配置編譯 Configuring for: PHP Api Version: 20131106 Zend Module Api No: 20131226 Zend Extension Api No: 220131226 [root@localhost memcache-2.2.7]# ./configure \ --enable-memcache \ --with-php-config=/usr/local/php5/bin/php-config [root@localhost memcache-2.2.7]# make && make install
注意配置Memcached API時,memcached源碼包中默認沒有configure配置腳本,須要使用PHP的phpize腳本生成配置腳本configure。tcp
[root@localhost memcache-2.2.7]# vim /usr/local/php5/php.ini ; extension_dir = "ext" extension_dir = "/usr/local/php5/lib/php/extensions/no-debug-zts-20131226/" #添加 extension = memcache.so 添加
2.在客戶端去檢測服務端是否能夠鏈接分佈式
1)編寫測試頁面,測試Memcached API功能。
root@localhost memcache-2.2.7]# cd /usr/local/httpd/htdocs/ [root@localhost htdocs]# vim index.php <?php $memcache = new Memcache(); $memcache->connect('192.168.126.138',11211); $memcache->set('key','Memcache test Successfull!',0,60); $result = $memcache->get('key'); unset($memcache); echo $result; ?> ~ [root@localhost htdocs]# service httpd restart
此段代碼的做用是在客戶端鏈接Memcached服務器,設置名爲'key'的鍵的值爲Memcache test Successfull,並讀取顯示。顯示成功,則表示服務器與客戶端協同工做正常。使用瀏覽器進行訪問,測試結果如圖所示。