search
HomeBackend DevelopmentPHP TutorialSummary of 9 major caching technologies in PHP_PHP Tutorial

A summary of the 9 major caching technologies in PHP

1. Full page static caching

That is to say, all pages are generated as html static pages. The static pages are directly accessed when users visit, without going through the process of PHP server parsing. This method is more common in CMS systems, such as dedecms;

A common implementation method is to use output caching:

<code><span class="typ">Ob_start<span class="pun">()<span class="pln">
<span class="pun">******要运行的代码*******<span class="pln">
$content <span class="pun">=<span class="pln"> <span class="typ">Ob_get_contents<span class="pun">();<span class="pln">
<span class="pun">****将缓存内容写入<span class="pln">html<span class="pun">文件*****<span class="pln">
<span class="typ">Ob_end_clean<span class="pun">();</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></code>

2. Partial cache of the page

This method is to statically cache the infrequently changing parts of a page, while frequently changing blocks are not cached, and are finally assembled together for display; this can be achieved using a method similar to ob_get_contents, or using a method similar to ESI The page fragment caching strategy of this class is used to cache relatively static fragment parts in dynamic pages (ESI technology, please Baidu, not detailed here).

This method can be used for example, on product pages in malls;

3. Data caching

As the name suggests, it is a way of caching data; for example, when a certain product information in the mall is requested using the product ID, data including store information, product information, etc. can be obtained. At this time, these can be The data is cached in a PHP file, and the file name contains the product ID to create a unique identifier; the next time someone wants to view this product, they will first directly adjust the information in this file without querying the database; in fact, the cache file is cached is just a php array;

This method is used in the Ecmall mall system;

4. Query cache

In fact, this is the same idea as data caching, which is to cache according to the query statement; cache the data obtained by the query in a file. The next time the same query is encountered, the data will be directly transferred from this file first. I will check the database again; but the cache file name here may need to be uniquely identified based on the query statement;

Caching based on time changes

Actually, this is not a real caching method; the caching technologies 2, 3, and 4 above generally use time change judgment; that is, you need to set a valid time for cached files. Within this valid time, the same The content of the cache file will be fetched first when accessing, but if the set cache time is exceeded, the data needs to be re-obtained from the database and the latest cache file will be generated; for example, I set the homepage of our mall to be updated every 2 hours;

5. Cache according to content changes

This is not an independent caching technology and needs to be used in combination; that is, when the database content is modified, the cache file will be updated immediately;
For example, in a mall with a lot of traffic and a lot of products, the product table must be relatively large, and the pressure on this table is also heavy; we can page cache the product display page;

当商家在后台修改这个商品的信息时,点击保存,我们同时就更新缓存文件;那么,买家访问这个商品信息时,实际上访问的是一个静态页面,而不需要再去访问数据库;

试想,如果对商品页不缓存,那么每次访问一个商品就要去数据库查一次,如果有10万人在线浏览商品,那服务器压力就大了;

6、内存式缓存

提到这个,可能大家想到的首先就是Memcached;memcached是高性能的分布式内存缓存服务器。 一般的使用目的是,通过缓存数据库查询结果,减少数据库访问次数,以提高动态Web应用的速度、 提高可扩展性。

它就是将需要缓存的信息,缓存到系统内存中,需要获取信息时,直接到内存中取;比较常用的方式就是 key–>value方式;

<code><span class="pun"><?<span class="pln">php 
     $memcachehost <span class="pun">=<span class="pln"> <span class="str">&#39;192.168.6.191&#39;<span class="pun">;<span class="pln">
     $memcacheport <span class="pun">=<span class="pln"> <span class="lit">11211<span class="pun">;<span class="pln">
     $memcachelife <span class="pun">=<span class="pln"> <span class="lit">60<span class="pun">;<span class="pln">
     $memcache <span class="pun">=<span class="pln"> <span class="kwd">new<span class="pln"> <span class="typ">Memcache<span class="pun">;<span class="pln">
     $memcache<span class="pun">-><span class="pln">connect<span class="pun">(<span class="pln">$memcachehost<span class="pun">,<span class="pln">$memcacheport<span class="pun">)<span class="pln"> <span class="kwd">or<span class="pln"> <span class="kwd">die<span class="pln"> <span class="pun">(<span class="str">"Could not connect"<span class="pun">);<span class="pln">
     $memcache<span class="pun">-><span class="kwd">set<span class="pun">(<span class="str">&#39;key&#39;<span class="pun">,<span class="str">&#39;缓存的内容&#39;<span class="pun">);<span class="pln">
     $get <span class="pun">=<span class="pln"> $memcache<span class="pun">-><span class="kwd">get<span class="pun">(<span class="pln">$key<span class="pun">);<span class="pln">       <span class="com">//获取信息<span class="pln">
<span class="pun">?></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></code>

7、apache缓存模块

apache安装完以后,是不允许被cache的。如果外接了cache或squid服务器要求进行web加速的话,就需要在htttpd.conf里进行设置,当然前提是在安装apache的时候要激活mod_cache的模块。

安装apache时:./configure –enable-cache –enable-disk-cache –enable-mem-cache

8、php APC缓存扩展

Php有一个APC缓存扩展,windows下面为php_apc.dll,需要先加载这个模块,然后是在php.ini里面进行配置:

<code><span class="pun">[<span class="pln">apc<span class="pun">]<span class="pln"> 
     extension<span class="pun">=<span class="pln">php_apc<span class="pun">.<span class="pln">dll 
     apc<span class="pun">.<span class="pln">rfc1867 <span class="pun">=<span class="pln"> on 
     upload_max_filesize <span class="pun">=<span class="pln"> <span class="lit">100M<span class="pln"> 
     post_max_size <span class="pun">=<span class="pln"> <span class="lit">100M<span class="pln"> 
     apc<span class="pun">.<span class="pln">max_file_size <span class="pun">=<span class="pln"> <span class="lit">200M<span class="pln"> 
     upload_max_filesize <span class="pun">=<span class="pln"> <span class="lit">1000M<span class="pln"> 
     post_max_size <span class="pun">=<span class="pln"> <span class="lit">1000M<span class="pln"> 
     max_execution_time <span class="pun">=<span class="pln"> <span class="lit">600<span class="pln"> <span class="pun">;<span class="pln">   <span class="pun">每个<span class="pln">PHP<span class="pun">页面运行的最大时间值(秒),默认<span class="lit">30<span class="pun">秒<span class="pln"> 
     max_input_time <span class="pun">=<span class="pln"> <span class="lit">600<span class="pln"> <span class="pun">;<span class="pln">       <span class="pun">每个<span class="pln">PHP<span class="pun">页面接收数据所需的最大时间,默认<span class="lit">60<span class="pln"> 
     memory_limit <span class="pun">=<span class="pln"> <span class="lit">128M<span class="pln"> <span class="pun">;<span class="pln">       <span class="pun">每个<span class="pln">PHP<span class="pun">页面所吃掉的最大内存,默认<span class="lit">8M</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></code>

9、Opcode缓存

我们知道,php的执行流程可以用下图来展示:
Summary of 9 major caching technologies in PHP_PHP Tutorial
首先php代码被解析为Tokens,然后再编译为Opcode码,最后执行Opcode码,返回结果;所以,对于相同的php文件,第一次运行时可以缓存其Opcode码,下次再执行这个页面时,直接会去找到缓存下的opcode码,直接执行最后一步,而不再需要中间的步骤了。

比较知名的是XCache、Turck MM Cache、PHP Accelerator等。


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1056559.htmlTechArticlePHP中9大缓存技术总结 1、全页面静态化缓存 也就是将页面全部生成html静态页面,用户访问时直接访问的静态页面,而不会去走php服务器解...
Statement
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
APC缓存技术在PHP中的应用实践APC缓存技术在PHP中的应用实践Jun 19, 2023 pm 07:16 PM

随着互联网的发展和数据处理量的不断增加,许多网站需要处理大量的数据查询和计算,这就需要高效的缓存机制来优化网站访问速度。APC(AlternativePHPCache)是一种在PHP语言中常用的缓存技术,它能够提升网站的性能和响应速度,本文将介绍APC缓存技术的基本原理以及在PHP中的应用实践。一、APC缓存技术的原理APC是一种开源的缓存技术,它可以将

APC缓存技术在基于PHP应用中使用游标迭代的解决方案APC缓存技术在基于PHP应用中使用游标迭代的解决方案Jun 19, 2023 pm 11:30 PM

随着互联网应用的发展,PHP作为一门流行的开发语言,被广泛应用于Web应用程序的开发中。然而,在实际的开发中,我们常常会遇到一些性能瓶颈的问题,导致应用程序无法满足用户的需求。而其中一个常见的瓶颈就是数据库查询造成的性能问题。为了解决这个问题,我们可以采用一些缓存技术,其中APC缓存技术是一个很好的选项。APC(AlternativePHPCache)是

在PHP应用中使用APC缓存技术进行动态数据缓存的应用场景在PHP应用中使用APC缓存技术进行动态数据缓存的应用场景Jun 21, 2023 pm 04:01 PM

随着Web应用越来越复杂,动态数据缓存成为了一个必需的技术。APC(AlternativePHPCache)作为一种内存缓存技术,可以大大提高Web应用的性能和响应速度。本文将介绍在PHP应用中使用APC缓存技术进行动态数据缓存的应用场景。访问频次较高的数据缓存一些数据在Web应用中被频繁访问,如果每次都从数据库中读取会严重影响应用性能。这时候可以将这些

在基于PHP应用中使用APC缓存技术实现聚合查询分析的应用场景在基于PHP应用中使用APC缓存技术实现聚合查询分析的应用场景Jun 20, 2023 pm 09:24 PM

APC缓存技术是一种基于PHP的缓存技术,它可以在减少服务器负载的同时提高应用性能。在基于PHP的应用程序中,APC缓存技术可以实现聚合查询分析,提高应用程序的效率以及用户的体验。聚合查询分析是指将多个查询结果合并在一起以得出更综合、更全面的数据分析结果。在处理大量数据时,聚合查询分析能够帮助我们捕捉数据中的重要信息,提高数据处理的效率,并减少需要对服务器进

如何使用APC进行PHP数据缓存优化?如何使用APC进行PHP数据缓存优化?Aug 10, 2023 am 10:30 AM

如何使用APC进行PHP数据缓存优化?简介:在开发过程中,我们经常会遇到需要频繁从数据库中读取数据并做处理的情况。这种情况下,为了提高性能和减少对数据库的访问压力,我们可以使用缓存来存储已经查询过的数据。APC(AlternativePHPCache)是一种常用的PHP扩展,允许我们将数据缓存在内存中,以加快PHP应用程序的运行速度。本文将介绍如何使用A

PHP应用中使用APC缓存技术的好处PHP应用中使用APC缓存技术的好处Jun 20, 2023 pm 09:18 PM

随着互联网的发展,PHP作为一种流行的Web编程语言被广泛应用于网站开发和应用程序开发。在PHP应用中,缓存技术可以提高应用的性能和可伸缩性,同时也可以减少服务器的负载压力。其中,APC缓存技术是一种常用的缓存技术之一,可以有效提高应用的响应速度和效率。APC缓存技术是一种PHP内置的缓存插件,全称为AlternativePHPCache。它可以缓存编译

APC缓存技术在PHP应用中被使用的常见方式分析APC缓存技术在PHP应用中被使用的常见方式分析Jun 20, 2023 pm 12:39 PM

APC(AlternativePHPCache)是一种PHP脚本的缓存技术,能够提高PHP应用性能。目前,它是PHP中最流行的缓存技术之一。本文将分析APC缓存技术在PHP应用中被使用的常见方式。1.缓存页面输出一个常见的使用APC缓存的方式是在页面输出中缓存数据,然后再下次请求时使用缓存数据。此方法可以明显提高应用程序的性能,尤其是在一个页面被频繁访问

PHP 7性能优化秘籍:如何使用APC缓存加速脚本执行PHP 7性能优化秘籍:如何使用APC缓存加速脚本执行Jul 29, 2023 pm 08:29 PM

PHP7性能优化秘籍:如何使用APC缓存加速脚本执行引言:随着网络应用的日益复杂和用户量的不断增加,优化PHP脚本的性能变得尤为重要。其中一种常见的优化方法是使用缓存来减少脚本执行的时间。在PHP中,APC(AlternativePHPCache)是一个广泛使用的缓存工具,可以显著改善脚本的性能。本文将介绍如何使用APC缓存来加速PHP7脚本的执行,

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version