Debian安裝memcached和php5-memcache模組

巴扎黑
發布: 2016-11-10 10:02:42
原創
1142 人瀏覽過

1、安裝memcached服務及php擴充
apt-get install memcached php5-memcached php5-memcache

2、查看是否安裝好memcached服務
ps aux | grep memcached
可以發現安裝了。也可以如下指令查看:
netstat -tap | grep 'memcached'

3、如需修改設定檔
請前往:/etc/memcached.conf
修改完重啟
pkill memcached
/usr/bin/meached re p 11211 -u nobody -l 127.0.0.1
最好在網路上找shell腳本,可以直接memcache start

4、最後web server重啟下,apache或nginx的fast-cgi
/etc/init.d/apache2 restart

Debian安裝memcached和php5-memcache模組

最後來個簡單的例子吧:

$mem =newMemcache;

$mem->connect("localhost",11211); 'hello world',0,60);

echo $mem->get('test');

如果能看到hello word,就真的ok了。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!