Apply Memcached in PHP

Source: Internet
Author: User
Tags php memcached
Nio. infor96.comphp-memcached I. Introduction to memcached in many occasions, we all hear the name of memcached, but many of you have heard of it and have never used it or actually understood it, I only know that it is a very good stuff. Memcached is an efficient and fast distributed memory object cache system.

Http://nio.infor96.com/php-memcached/ 1, memcached introduction in many occasions, we will hear the name of memcached, but many people just heard of it, and did not know it or actually know it is a very good stuff. Memcached is an efficient and fast distributed memory object cache system.

Http://nio.infor96.com/php-memcached/

1. Introduction to memcached

On many occasions, we will hear the name memcached, but many of you have heard of it, and have never used it or actually understood it. I only know that it is a good stuff. Memcached is an efficient and fast distributed memory object cache system, mainly used to accelerate Dynamic WEB applications.

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# make install# cd ..# tar -xzf memcached-1.1.12.tar.gz# cd memcached-1.1.12# ./configure --prefix=/usr# make# 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 memcachedYou can see it.

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.

Iii. 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, which must be included during compilation in Linux.-Enable-memcache [= DIR]Option. In the Window, remove the comments in front of php_memcache.dll in php. 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.

Iv. 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:

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;

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;

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:

   Array ('2017. 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 string') to memcached; $ val = $ mc-> get ($ key ); echo "N '. str_pad ('$ mc-> add ()', 60 ,'_'). "N'; var_dum P ($ val); // replace the data value of the written object $ 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) ;?>

It is not very simple. In actual applications, the database query result set is usually stored in 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 ):


  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 the 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, return directly. If the data does not exist, connect to the database, obtain the SESSION data, and save the data to memcached for the next use;
  • When the current PHP running ends (or session_write_close () is used), The My_Sess: write () method is called to write data to the database. In this way, database operations are still performed each time, this method also needs to be optimized. 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 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.

V. Related Resources

  • Official website of memcached
  • PHP memcached client
  • Download memcached-client.php
Related Article

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.