在CentOS7上部署Memcached高性能內存緩存對象
Memcached是一套 開源的高性能分布式內存對象緩存系統,它將所有的數據 都存儲在內存中,因為在內存中會統一維護一張巨大的Hash表,所以支持任意存儲類型的數據。
Memcached是典型的C/S架構,因此需要安裝Memcached服務端與MemcachedAPI客戶端。Memcached服務端是用C語言編寫的,而Memcached API客戶端可以用任何語言來編寫。常用典型架構如圖所示:
當Web客戶端發送請求到Web服務器的應用程序時,應用程序會通過調用MemcachedAPI客戶端程序庫接口連接Memcached服務器,進而查詢數據。如果此時的Web客戶端所求的數據已經在Memcached服務端中緩存,則Memcached服務端會將數據返回給Web客戶端;如果數據不存在,則會將Web客戶端請求發送至Mysql數據庫,由數據庫將請求的數據返回給Memcached以及Web客戶端,與此同時Memcached服務器也會將數據進行保存,以方便用戶下次請求使用。
實驗步驟
安裝Memcached服務器
1.安裝Libevent
[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.
安裝Memcached API客戶端
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。
[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,並讀取顯示。顯示成功,則表示服務器與客戶端協同工作正常。使用瀏覽器進行訪問,測試結果如圖所示。
在CentOS7上部署Memcached高性能內存緩存對象