How to use Memcached for PHP and Memcached_PHP for PHP

Source: Internet
Author: User
Tags php memcached
PHP uses Memcached and PHP uses Memcached. How to use Memcached in PHP, Memcached in php I. memcached introduction memcached is a high-performance distributed memory cache server. The general purpose is to query through the cache database how PHP uses Memcached, and PHP uses Memcached

1. Introduction to memcached

Memcached is a high-performance distributed memory cache server. The general purpose is to reduce the number of database accesses by caching database query results, so as to speed up dynamic Web applications and improve scalability. It can cope with any number of connections and use non-blocking network I/O. Because its working mechanism is to open up a space in the memory, and then create a HashTable, Memcached self-manages these HashTable.

II. install memcached

First Download memcached, the latest version is 1.1.12, directly from the official website to download to the memcached-1.1.12.tar.gz. In addition, memcached used libevent and I downloaded the libevent-1.1a.tar.gz.

Next are the libevent-1.1a.tar.gz and memcached-1.1.12.tar.gz unwrapped packages, compilation, installation:
# Tar-xzf libevent-1.1a.tar.gz # cd libevent-1.1a #. /configure -- prefix =/usr # make install # cd .. # tar-xzf memcached-1.1.12.tar.gz # cd memcached-1.1.12 #. /configure -- prefix =/usr # make install
After the installation is complete, memcached should be in/usr/bin/memcached.

III. run the memcached daemon

Running the memcached daemon is simple. you only need one command line and no configuration file needs to be modified (and no configuration file is modified for you ):
/Usr/bin/memcached-d-m 128-l 192.168.1.1-p 11211-u httpd
Parameter description:

-D runs memcached in daemon mode;-m sets the memory size available for memcached, in MB;-l sets the IP address of the listener, if it is a local machine, this parameter can be left unspecified.-p is used to set the listening port. the default value is 11211, so this parameter can be left unspecified.-u specifies the user. if the current value is root, you need to use this parameter to specify the user.

Of course, there are other parameters that can be used. man memcached can be seen at a moment.

IV. how memcached works

First, memcached runs on one or more servers as a daemon and accepts client connection operations at any time. the client can be written in various languages, currently, known client APIs include Perl, PHP, Python, Ruby, Java, C #, and C. After the PHP client establishes a connection with the memcached service, the next thing is to access the object. each accessed object has a unique identifier key, and the access operation is performed through this key, objects saved to memcached are actually stored in the memory, not in the cache file. This is why memcached is so efficient and fast. Note that these objects are not persistent. after the service is stopped, the data in the objects will be lost.

5. how does PHP act as the memcached client?

You can use PHP as the memcached client to call the memcached service for object access.

First, PHP has an extension called memcache. during compilation in Linux, The-enable-memcache [= DIR] option must be included, and the Window is in php. remove the annotator in front of php_memcache.dll in ini to make it available.

In addition, there is also a way to avoid the trouble of extension and re-compilation, that is, directly using php-memcached-client.

The second method is used in this article. although the efficiency is slightly lower than that of the extended library, it is not a problem.

VI. PHP memcached application example

First download the memcached-client.php, after downloading the memcached-client.php, you can operate the memcached service through the class "memcached" in this file. In fact, code calls are very simple. The main methods used include add (), get (), replace (), and delete (). The methods are described as follows:

The code is as follows:
Add ($ key, $ val, $ exp = 0)

Write an object to memcached. $ key is the unique identifier of the object. $ val is the data of the written object. $ exp is the expiration time, in seconds. the default value is unlimited;

Get ($ key)

Get object data from memcached and get it through the unique identifier $ key of the object;

The code is as follows:
Replace ($ key, $ value, $ exp = 0)

Replace $ value with the content of the $ key object in memcached. the parameter works only when the $ key object exists like the add () method;

The code is as follows:
Delete ($ key, $ time = 0)

Delete an object with the identifier $ key in memcached. $ time is an optional parameter, indicating how long it will take before deletion.

The following is a simple test code that allows you to access the object data with the identifier 'MyKey:

<? Php // contains the memcached class file require_once ('memcached-client. php '); // Set the options to $ options = array ('servers' => array ('123. 168.1.1: 11211 '), // address and port of the memcached service. multiple array elements can be used to indicate multiple memcached services 'debug' => true, // whether to enable debug 'compress _ threshold '=> 10240, // compress 'persistant' => false // whether to use persistent connections when data exceeds the size of bytes ); // Create a memcached object instance $ mc = new memcached ($ options); // Set the unique identifier used by this script $ key = 'MyKey '; // write the object $ mc-> add ($ key, 'Some Random strings '); $ val = $ mc-> get ($ key); echo "n ". str_pad ('$ mc-> add ()', 60 ,'_'). "n"; var_dump ($ val); // replace the written object data value $ mc-> replace ($ key, array ('some' => 'hahaha ', 'array' => 'XXX'); $ val = $ mc-> get ($ key); echo "n ". str_pad ('$ mc-> replace ()', 60 ,'_'). "n"; var_dump ($ val); // delete an object in memcached $ mc-> delete ($ key); $ val = $ mc-> get ($ key ); echo "n ". str_pad ('$ mc-> delete ()', 60 ,'_'). "n"; var_dump ($ val);?>

Is it very easy? in actual applications, the database query result set is usually saved to memcached. The result set is obtained directly from memcached during the next visit, instead of performing database query operations, this can greatly reduce the burden on the database. Generally, the value after the md5 () of the SQL statement is used as the unique identifier key. Below is an example of using memcached to cache the database query result set (this code snippet is followed by the above sample code ):

<? Php $ SQL = 'select * FROM users'; $ key = md5 ($ SQL); // memcached object identifier if (! ($ Datas = $ mc-> get ($ key) {// if no cached data is obtained in memcached, use database query to obtain the record set. Echo "n ". str_pad ('read datas from MySQL. ', 60 ,'_'). "n"; $ conn = mysql_connect ('localhost', 'test', 'test'); mysql_select_db ('test'); $ result = mysql_query ($ SQL ); while ($ row = mysql_fetch_object ($ result) $ datas [] = $ row; // Save the result set data obtained from the database to memcached, for the next access. $ Mc-> add ($ key, $ datas);} else {echo "n ". str_pad ('read datas from memcached. ', 60 ,'_'). "n" ;}var_dump ($ datas) ;?>

It can be seen that after memcached is used, the database connection and query operations can be reduced, the database load is reduced, and the script running speed is also improved.

I have previously written an article titled "PHP achieves multi-server sharing SESSION data". the SESSION in this article is saved in a database. when the concurrency traffic is high, the load on the server is very large and often exceeds the maximum number of connections in MySQL. using memcached, we can solve this problem well. The working principle is as follows:

When a user accesses the webpage, check whether the current user's SESSION data exists in memcached and use session_id () as the unique identifier. if the data exists, the system returns the result directly. if the data does not exist, the system connects to the database, obtain the SESSION data and save the data to memcached for the next use. when the current PHP operation ends (or session_write_close () is used), My_Sess: write () is called () method to write data to the database. in this way, database operations are still performed each time. optimization is also required for this method. Use a global variable to record the SESSION data when the user enters the page, and then compare the data with the SESSION data to be written in the write () method, different databases are connected and written to the database. at the same time, the corresponding objects in memcached are deleted. if they are the same, the SESSION data is not changed, so no operation can be performed and the data is returned directly; so how can we solve the user's SESSION expiration time? Do you remember that the add () method of memcached has an expiration time parameter $ exp? Set this parameter to a value smaller than the maximum SESSION survival time. In addition, do not forget to extend the SESSION duration for those users who have been online. this can be solved in the write () method. by judging the time, the database data will be updated if the conditions are met.

The above content is a small Editor to introduce how PHP uses Memcached. I hope it will help you!

Articles you may be interested in:
  • PHP5.5 how to install and use memcached server on windows
  • PHP module memcached User Guide
  • PHP extension module memcached persistent connection usage analysis
  • Simple example of using memcached in PHP

Memcached is a high-performance distributed memory cache server. The general purpose is to query the result through the cache database...

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.