PHP supports memcached extension-php Tutorial

Source: Internet
Author: User
Tags zts
PHP supports memcached extension 1. Download

(1) libevent

Official website: http://monkey.org /~ Provos/libevent/

Download command:


  1. wget http://monkey.org/~provos/libevent-2.0.13-stable.tar.gz


(2) libmemcached

Official website: https://launchpad.net/libmemcached/+download

Download command:


  1. wget http://launchpad.net/libmemcached/1.0/0.52/+download/libmemcached-0.52.tar.gz


(3) PHP

Official website: http://cn2.php.net/get/php-5.3.8.tar.gz/from/a/mirror

Download command:


  1. wget http://cn2.php.net/get/php-5.3.8.tar.gz/from/cn.php.net/mirror


(4) Memcached server

Official website: http://memcached.org/

Download command:


  1. wget http://memcached.googlecode.com/files/memcached-1.4.7.tar.gz


(5) Memcache For PHP Module

Official website: http://pecl.php.net/package/memcache

Download command:


  1. wget http://pecl.php.net/get/memcache-3.0.6.tgz



2. install the Memcached server

(1) install libevent

[Plain]View plain copy print?

  1. tar -zxvf libevent-2.0.13-stable.tar.gz  cd libevent-2.0.13-stable  ./configure  make  make install


(2) install Memcached


  1. tar -zxvf memcached-1.4.7.tar.gz  cd memcached-1.4.7  ./configure --prefix=/usr/local/memcached  make  make install



3. install PHP

(1) install libxml2


  1. sudo apt-get install libxml2-dev



(2) decompress and compile


  1. tar -zxvf php-5.3.8.tar.gz  cd php-5.3.8  ./configure  make  make install



4. install the Memcache for PHP Module

(1) decompress and compile

tar -zxvf memcache-3.0.6.tgz  cd memcache-3.0.6  /usr/local/bin/phpize  ./configure --enable-memcache --with-php-config=/usr/local/php5/bin/php-config --with-zlib-dir  make  make install


After running "make install:


  1. Installing shared extensions:     /usr/local/lib/php/extensions/no-debug-non-zts-20090626/




(2) modify the php. ini file

Find the following code:


  1. Extension_dir = "./"



Change the directory to make install.


  1. Extension = "/usr/local/lib/php/extensions/no-debug-non-zts-20090626 /"




Add the extension attribute and set it


  1. Extension = memcache. so




5. test

(1) compile the test file


  1.    connect("127.0.0.1", 11211);          $mem->set('key', 'This is a test!', 0, 60);          $val = $mem->get('key');          echo $val;  ?>



(2) run the test file


  1. php -c /etc/php5/cgi/php.ini test.php



(3) result test

If there is no error, it is OK.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.