程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP安裝memcached擴展筆記,phpmemcached擴展

PHP安裝memcached擴展筆記,phpmemcached擴展

編輯:關於PHP編程

PHP安裝memcached擴展筆記,phpmemcached擴展


最近在服務器上部緩存系統,記錄一下PHP安裝memcached擴展。
復制代碼 代碼如下:
# 安裝服務端
yum install memcached -y

I. launchpad

請於https://launchpad.net/libmemcached/+download下載目前最新版的libmemcached(20150524)
復制代碼 代碼如下:
cd /tmp
wget https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz
tar zxf libmemcached-1.0.18.tar.gz
cd libmemcached-1.0.18
./configure
make
make install

II. 安裝memcached擴展

在PECL(The PHP Extension Community Library)找到並安裝php的memcached擴展。
復制代碼 代碼如下:
在PECL中你能找到以下兩個容易混淆的memcache的PHP擴展,你能夠分清楚他們的區別嗎?你知道為什麼我們要用前者嗎?請讀者紫星Google之!
memcached PHP extension for interfacing with memcached via libmemcached library
memcache memcached extension

[https://pecl.php.net/package/memcached][4] 目前最新版為2.2.0

復制代碼 代碼如下:
mkdir /usr/src/php -p
cd /usr/src/php
wget https://pecl.php.net/get/memcached -O memcached-2.2.0.tgz
tar xf memcached-2.2.0.tgz
cd memcached-2.2.0
phpize
# 我們在配置的添加一些新的功能,使其支持json和igbinary,有空可以研究一下
./configure --enable-memcached --enable-memcached-json --enable-memcached-igbinary
make
make install
# 注意最後的輸出
# Installing shared extensions:     /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/

下面我們將其移動到php的extension目錄下
復制代碼 代碼如下:
cp /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/*.so /usr/local/php/lib/php/extensions/

III. 配置PHP.ini

打開正在生效的php.ini文件
復制代碼 代碼如下:
vim /usr/local/php/etc/php.ini

# 添加以下配置
[Memcached]
extension=memcached.so


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved