Install memcached extension notes in PHP and phpmemcached Extension
Recently, in the upper Cache System of the server, record how to install the memcached extension in PHP.
Copy codeThe Code is as follows:
# Install the server
Yum install memcached-y
I. launchpad
Please download the latest version of libmemcached (20150524) at https://launchpad.net/libmemcached/javasdownload)
Copy codeThe Code is as follows:
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. Install memcached Extension
Find and install The memcached Extension of PHP in PECL (The php Extension Community Library.
Copy codeThe Code is as follows:
In PECL, you can find the following two PHP extensions of memcache that are easy to confuse. Can you tell the differences between them? Do you know why we should use the former? Please refer to Zixing Google!
Memcached PHP extension for interfacing with memcached via libmemcached library
Memcache memcached extension
[Https://pecl.php.net/package/memcached3164] the latest version is 2.2.0.
Copy codeThe Code is as follows:
Mkdir/usr/src/php-p
Cd/usr/src/php
Wget-O https://pecl.php.net/get/memcached
Tar xf memcached-2.2.0.tgz
Cd memcached-2.2.0
Phpize
# Add some new functions in the configuration so that they support json and igbinary. If you have time, study them.
./Configure -- enable-memcached-json -- enable-memcached-igbinary
Make
Make install
# Note the final output
# Installing shared extensions:/usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/
Next we will move it to the extension directory of php.
Copy codeThe Code is as follows:
Cp/usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/*. so/usr/local/php/lib/php/extensions/
III. Configure PHP. ini
Open the active php. ini file
Copy codeThe Code is as follows:
Vim/usr/local/php/etc/php. ini
# Add the following configurations
[Memcached]
Extension = memcached. so