Home Backend Development PHP Tutorial PHP memory caching function memcached example

PHP memory caching function memcached example

Dec 30, 2016 pm 01:36 PM

The following briefly introduces the application examples of the memcached class, which has certain reference value. Interested friends can refer to it.

1. Introduction to memcached

On many occasions, we will hear the name memcached, but many students have only heard of it and have not used it or actually understood it. I just know it's a very good thing. Here is a brief introduction: memcached is an efficient and fast distributed memory object caching system, mainly used to accelerate WEB dynamic applications.

2. Memcached installation

The first step is to download memcached. The latest version is 1.1.12. You can download memcached-1.1.12 directly from the official website. tar.gz. In addition, memcached uses libevent, and I downloaded libevent-1.1a.tar.gz.

The next step is to unpack, compile and install libevent-1.1a.tar.gz and memcached-1.1.12.tar.gz respectively:

# 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.

3. Run the memcached daemon

Running the memcached daemon is very simple. It only requires a command line and does not need to modify any configuration files (there is no configuration file) Modified for you):
/usr/bin/memcached -d -m 128 -l 192.168.1.1 -p 11211 -u httpd

Parameter explanation:

-d Run memcached in daemon mode;

-m sets the memory size that memcached can use, in M;

-l sets the listening IP address, if it is the local machine, Usually you don’t need to set this parameter;

-p sets the listening port, the default is 11211, so you don’t need to set this parameter;

-u specifies the user, which is required if you are currently root. Use this parameter to specify the user.

Of course, there are other parameters that can be used. You can see them by running man memcached.

4. Working principle of memcached

First of all, memcached runs in one or more servers as a daemon and accepts client connection operations at any time. The client can Written in various languages, currently known client APIs include Perl/PHP/Python/Ruby/Java/C#/C and so on. After PHP and other clients establish a connection with the memcached service, the next thing is to access objects. Each accessed object has a unique identifier key. Access operations are performed through this key and saved to memcached. The objects in are actually placed in memory, not stored in cache files, which is why memcached can be so efficient and fast. Note that these objects are not persistent, and the data inside will be lost after the service is stopped.

5. How to use PHP as a memcached client

There are two ways to use PHP as a memcached client to call the memcached service for object access operations.

First, PHP has an extension called memcache. When compiling under Linux, you need to bring the –enable-memcache[=DIR] option. Under Windows, remove php_memcache.dll in php.ini. Comment character in front of it to make it available.

In addition, there is another way to avoid the trouble caused by expansion and recompilation, and that is to use php-memcached-client directly.

This article chooses the second method. Although the efficiency will be slightly worse than that of the extension library, it is not a big problem.

6. PHP memcached application example

First download memcached-client.php. After downloading memcached-client.php, you can use the class "memcached" in this file The memcached service has been operated. In fact, the code call is very simple. The main methods used are add(), get(), replace() and delete(). The method description is as follows:

add ($key, $val, $exp = 0)
Copy after login

Write objects into memcached. $key is the unique identifier of the object. $val is the object data written. $exp is the expiration time in seconds. The default is unlimited time;

get ($key)
Copy after login

Get object data from memcached through the object’s unique identifier $key;

replace ($key, $value, $exp=0)
Copy after login

Use $ value replaces the object content with the identifier $key in memcached. The parameters are the same as the add() method. It will only work if the $key object exists;

delete ($key, $time = 0)
Copy after login

Delete memcached The object with identifier $key, $time is an optional parameter, indicating how long to wait before deleting.

The following is a simple test code, which performs access operations on the object data with the identifier 'mykey':

<?php
// 包含 memcached 类文件
require_once(&#39;memcached-client.php&#39;);
// 选项设置
$options = array(
 &#39;servers&#39; => array(&#39;192.168.1.1:11211&#39;), //memcached 服务的地址、端口,可用多个数组元素表示多个 memcached 服务
 &#39;debug&#39; => true, //是否打开 debug
 &#39;compress_threshold&#39; => 10240, //超过多少字节的数据时进行压缩
 &#39;persistant&#39; => false //是否使用持久连接
 );
// 创建 memcached 对象实例
$mc = new memcached($options);
// 设置此脚本使用的唯一标识符
$key = &#39;mykey&#39;;
// 往 memcached 中写入对象
$mc->add($key, &#39;some random strings&#39;);
$val = $mc->get($key);
echo "n".str_pad(&#39;$mc->add() &#39;, 60, &#39;_&#39;)."n";
var_dump($val);
// 替换已写入的对象数据值
$mc->replace($key, array(&#39;some&#39;=>&#39;haha&#39;, &#39;array&#39;=>&#39;xxx&#39;));
$val = $mc->get($key);
echo "n".str_pad(&#39;$mc->replace() &#39;, 60, &#39;_&#39;)."n";
var_dump($val);
// 删除 memcached 中的对象
$mc->delete($key);
$val = $mc->get($key);
echo "n".str_pad(&#39;$mc->delete() &#39;, 60, &#39;_&#39;)."n";
var_dump($val);
?>
Copy after login

是不是很简单,在实际应用中,通常会把数据库查询的结果集保存到 memcached 中,下次访问时直接从 memcached 中获取,而不再做数据库查询操作,这样可以在很大程度上减轻数据库的负担。通常会将 SQL 语句 md5() 之后的值作为唯一标识符 key。下边是一个利用 memcached 来缓存数据库查询结果集的示例(此代码片段紧接上边的示例代码):

<?php
$sql = &#39;SELECT * FROM users&#39;;
$key = md5($sql); //memcached 对象标识符
{
 // 在 memcached 中未获取到缓存数据,则使用数据库查询获取记录集。
 echo "n".str_pad(&#39;Read datas from MySQL.&#39;, 60, &#39;_&#39;)."n";
 $conn = mysql_connect(&#39;localhost&#39;, &#39;test&#39;, &#39;test&#39;);
 mysql_select_db(&#39;test&#39;);
 $result = mysql_query($sql);
 while ($row = mysql_fetch_object($result))
  $datas[] = $row;
 // 将数据库中获取到的结果集数据保存到 memcached 中,以供下次访问时使用。
 $mc->add($key, $datas);
{
 echo "n".str_pad(&#39;Read datas from memcached.&#39;, 60, &#39;_&#39;)."n";
}
var_dump($datas);
?>
Copy after login

可以看出,使用 memcached 之后,可以减少数据库连接、查询操作,数据库负载下来了,脚本的运行速度也提高了。

之前我曾经写过一篇名为《PHP 实现多服务器共享 SESSION 数据》文章,文中的 SESSION 是使用数据库保存的,在并发访问量大的时候,服务器的负载会很大,经常会超出 MySQL 最大连接数,利用 memcached,我们可以很好地解决这个问题,工作原理如下:

用户访问网页时,查看 memcached 中是否有当前用户的 SESSION 数据,使用 session_id() 作为唯一标识符;如果数据存在,则直接返回,如果不存在,再进行数据库连接,获取 SESSION 数据,并将此数据保存到 memcached 中,供下次使用;

当前的 PHP 运行结束(或使用了 session_write_close())时,会调用 My_Sess::write() 方法,将数据写入数据库,这样的话,每次仍然会有数据库操作,对于这个方法,也需要进行优化。使用一个全局变量,记录用户进入页面时的 SESSION 数据,然后在 write() 方法内比较此数据与想要写入的 SESSION 数据是否相同,不同才进行数据库连接、写入数据库,同时将 memcached 中对应的对象删除,如果相同的话,则表示 SESSION 数据未改变,那么就可以不做任何操作,直接返回了;

那么用户 SESSION 过期时间怎么解决呢?记得 memcached 的 add() 方法有个过期时间参数 $exp 吗?把这个参数值设置成小于 SESSION 最大存活时间即可。另外别忘了给那些一直在线的用户延续 SESSION 时长,这个可以在 write() 方法中解决,通过判断时间,符合条件则更新数据库数据。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持PHP中文网。

更多PHP内存缓存功能memcached示例相关文章请关注PHP中文网!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1273
29
C# Tutorial
1255
24
Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Apr 17, 2025 am 12:06 AM

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values ​​to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

How does PHP type hinting work, including scalar types, return types, union types, and nullable types? How does PHP type hinting work, including scalar types, return types, union types, and nullable types? Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP vs. Other Languages: A Comparison PHP vs. Other Languages: A Comparison Apr 13, 2025 am 12:19 AM

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

See all articles