


php memcache and memcached module installation application_PHP tutorial
The official homepage of memcache: php tutorial.net/package/memcache">http://pecl.php.net/package/memcache
The official homepage of memcached: http://pecl.php.net/package /memcached
The following is the process record of my installation of the Memcached version of the PHP module:
wget http://download.tangent.org/libmemcached-0.48.tar.gz
tar zxf libmemcached-0.48.tar.gz
cd libmemcached-0.48
./configure --prefix=/usr/local/libmemcached --with-memcached
make
make install
wget http://pecl.php.net/get/memcached-1.0.2.tgz
tar zxf memcached-1.0.2.tgz
cd memcached-1.0.2
/usr/local/webserver /php/bin/phpize
./configure --enable-memcached --with-php-config=/usr/local/webserver/php/bin/php-config --with-libmemcached-dir=/usr/ local/libmemcached
make
make install
Add
extension=memcached.so to php.ini
Complete
Another:
Install libmemcached If you only use ./configure, you may be prompted:
checking for memcached... no
configure: error: “could not find memcached binary”
Install the Memcached version of the PHP module
wget http://download.tangent.org/libmemcached-0.35.tar.gz
tar zxf libmemcached-0.35.tar.gz
cd libmemcached-0.35
./configure
make
make install
wget http://pecl.php.net/get/memcached-1.0.0.tgz
tar zxf memcached-1.0.0.tgz
cd memcached-1.0.0
phpize
./configure
make
make install
Open php.ini and add:
extension = "memcached.so"
The installation is complete. You can confirm it with the following command:
php -m | grep mem
Demonstrate the new features of the Memcached version
First make up a fictitious problem. Assume that the initial value of counter is an integer. The increment method is not used, and each increment is completed through get/set.
In the Memcache version, we can only proceed as follows:
$m = new Memcache();
$m->addServer('localhost', 11211);
$v = $m->get('counter');
$m->set('counter', $v + 1);
Due to get/ The two actions of set cannot be operated as an atom, so when multiple processes process it at the same time, there is a possibility of loss. What is even more annoying is that you don't know when the loss occurs.
Let’s look at how we do it in the Memcached version:
$md = new Memcached();
$md->addServer('localhost', 11211);
$v = $md->get('counter', null, $token)
$md->cas($token, 'counter', $v + 1);
cas is a function provided in the Memcached version. To put it bluntly, it is an optimistic locking function. If you var_dump the value of $token, you will find that $token is actually a version number. If the $token version number obtained through get is in If it does not correspond to the cas operation, it means that other operations have been updated. At this time, the cas operation will fail. As for how to continue the operation, it is up to you.
Note: If you want to manually reproduce the conflict situation, you can sleep for a few seconds between get and cas, copy the two scripts, and execute them one after another.
By the way, the recommended hash setting for the Memcached version module is as follows:
$md->setOption(Memcached::OPT_DISTRIBUTION, Memcached::DISTRIBUTION_CONSISTENT);
$md ->setOption(Memcached::OPT_HASH, Memcached::HASH_CRC);
The two are almost identical to use.
Copy the code as follows:
$mem = new Memcache;
$mem->addServer($memcachehost, '11211');
$mem->addServer($memcachehost, '11212 ');
$mem->set('hx','9enjoy');
echo $mem->get('hx');
Copy the code as follows:
$md = new Memcached;
$servers = array(
array($memcachehost, '11211'),
array($memcachehost, '11212')
);
$ md->addServers($servers);
$md->set('hx','9enjoy');
echo $md->get('hx');
Memcached has many more methods than memcache, such as getMulti, getByKey, addServers, etc.
Memcached does not have the connect method of memcache, and it does not currently support long connections.
Memcached supports Binary Protocol, but memcache does not, which means memcached will have higher performance.
Memcache is implemented natively and supports the coexistence of OO and non-OO interfaces. memcached uses libmemcached and only supports OO interfaces.
More detailed differences: http://code.google.com/p/memcached/wiki/PHPClientComparison
The memcached server is a centralized caching system, and the distributed implementation method is determined by the client.
The memcached distribution algorithm generally has two options:
1. According to the result of hash(key), the remainder of the modular connection number determines which node to store, that is, hash(key)% sessions.size(), This algorithm is simple, fast and performs well. However, this algorithm has a shortcoming, that is, when memcached nodes are added or deleted, the original cached data will become invalid on a large scale, and the hit rate will be greatly affected. If there are many nodes and cached data, the cost of rebuilding the cache will be too high, so With the second algorithm.
2. Consistent Hashing, consistent hashing algorithm, its node search process is as follows:
First find the hash value of the memcached server (node), and configure it to the circle (continuum) of 0~232 superior. Then use the same method to find the hash value of the key storing the data and map it to the circle. It then searches clockwise starting from the location where the data is mapped, and saves the data to the first server found. If the server is still not found after exceeding 2 to the power of 32, it will be saved to the first memcached server.
memcache uses the first method without any configuration. To implement the first method, memcached seems to use (unconfirmed):
$md->setOption(Memcached::OPT_HASH, Memcached::HASH_CRC);
The second consistent hash Algorithm:
memcache is added in php.ini
Copy the code as follows:
Memcache.hash_strategy =consistent
Memcache.hash_function =crc32
memcached is added to the program (Unconfirmed)
Copy the code as follows:
$md->setOption(Memcached::OPT_DISTRIBUTION, Memcached::DISTRIBUTION_CONSISTENT);
$md->setOption(Memcached::OPT_HASH, Memcached: :HASH_CRC);
or
$mem->setOption(Memcached::OPT_DISTRIBUTION,Memcached::DISTRIBUTION_CONSISTENT);
$mem->setOption(Memcached::OPT_LIBKETAMA_COMPATIBLE,true);
Some reference documents:
memcached distribution test report (hash function selection in the case of consistent hashing):
http://www.iteye.com/topic/346682
php module memcache The difference with memcached: http://www.jb51.net/article/27366.htm
PHP module: Memcached > Memcache: http://www.jb51.net/article/27367.htm
20110509@@UPDATE:
If you install libmemcached, the following error message appears:
make[2]: *** [clients/ms_conn.o] Error 1
make[2]: Leaving directory `/www /soft/libmemcached-0.48'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/www/soft/libmemcached-0.48'
make: *** [all] Error 2
You can add --disable-64bit CFLAGS="-O3 -march=i686" when configure.
That is: ./configure --prefix=/usr/local /libmemcached --with-memcached --disable-64bit CFLAGS="-O3 -march=i686"
Analysis
memcache:http://cn2.php.net/ manual/en/book.memcache.php
memcached:http://cn2.php.net/manual/en/book.memcached.php
2.Memcache is implemented natively and supports both OO and non-OO Sockets coexist. Memcached uses libmemcached and only supports OO interface.
3. Another very commendable thing about memcached is that the flag is not set during operation, but has a unified setOption(). Memcached implements more of the memcached protocol.
4.memcached supports Binary Protocol, but memcache does not. This means memcached will have higher performance. However, memcached does not currently support long connections.
There is a table below to compare the php client extension memcache and memcached
http://code.google.com/p/memcached/wiki/PHPClientComparison
Another point is that everyone What is more concerning is the algorithm used. Everyone knows that the "consistent hash algorithm" is an algorithm that has less impact on the data stored on memcached when storage nodes are added or deleted. Then this algorithm can be used in both extension libraries of PHP, but the setting method is different.
Memcache
Modify php.ini and add:
[Memcache]
Memcache.allow_failover = 1
……
……
Memcache.hash_strategy =consistent
Memcache. hash_function =crc32
……
……
Or use the ini_set method in php:
Ini_set('memcache.hash_strategy','standard');
Ini_set('memcache.hash_function' ,'crc32');
Memcached
$mem = new memcached();
$mem->setOption(Memcached::OPT_DISTRIBUTION,Memcached::DISTRIBUTION_CONSISTENT);
$mem ->setOption(Memcached::OPT_LIBKETAMA_COMPATIBLE,true);

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

In this chapter, we are going to learn the following topics related to routing ?

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
