This article mainly introduces nine methods of PHP caching. Interested friends can refer to it. I hope it will be helpful to everyone.
1. Full page static caching
That is to say, all pages are generated into html static pages. The static pages are directly accessed when users visit without going to php. Server parsing process. This method is more common in CMS systems, such as dedecms;
A more common implementation method is to use output caching:
Ob_start()
*** ***Code to run******
$content = Ob_get_contents();
****Write cached content to html file*****
Ob_end_clean();
2. Partial page caching
This method is to statically cache the parts of a page that do not change frequently. 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 a page fragment caching strategy such as ESI can be used to cache relatively static fragments in dynamic pages. Caching (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 cached. At this time, these data can be 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, first directly adjust the information in this file without querying the database; in fact, what is cached in the cache file is a php array;
This method is used in the Ecmall mall system;
4. Query caching
In fact, this is the same idea as data caching, which is caching based on query statements. ;Cache the data obtained from the query in a file. The next time the same query is encountered, the data will be directly transferred from this file without checking the database; but the cache file name here may need to be queried. The statement is the base point to establish a unique identifier;
Caching based on time changes
In fact, 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 the cached file. Within this valid time, the same access will first fetch the contents of the cached file. However, if the set cache time is exceeded, the data needs to be retrieved from the database and produced. The latest cache file; for example, I set the homepage of our mall to be updated every 2 hours;
5. Cache according to content changes
This is not independent either Caching technology needs to be used in combination; that is, when the database content is modified, the cache file is updated immediately;
For example, in a shopping mall with a large flow of people and many products, the product table must be relatively large, and the pressure on this table It is also relatively heavy; we can cache the product display page;
When the merchant modifies the product information in the background, click Save, and we will update the cache file at the same time; then, when the buyer accesses the product information When accessing a product, you actually access a static page without accessing the database;
Just imagine, if the product page is not cached, then you have to check the database every time you access a product. If there are 10 With tens of thousands of people browsing products online, the server will be under great pressure;
6. Memory caching
When it comes to this, the first thing that everyone may think of is Memcached; memcached is High-performance distributed memory cache server. The general purpose of use is to reduce the number of database accesses by caching database query results to increase the speed and scalability of dynamic web applications.
It caches the information that needs to be cached into the system memory. When the information needs to be obtained, it is retrieved directly from the memory; the more commonly used method is the key–>value method;
<?php $memcachehost = '192.168.6.191'; $memcacheport = 11211; $memcachelife = 60; $memcache = new Memcache; $memcache->connect($memcachehost,$memcacheport) or die ("Could not connect"); $memcache->set('key','缓存的内容'); $get = $memcache->get($key); //获取信息 ?>
7. Apache cache module
After apache is installed, it is not allowed to be cached. If an external cache or squid server requires web acceleration, it needs to be set in httpd.conf. Of course, the premise is that the mod_cache module must be activated when installing apache.
When installing apache: ./configure –enable-cache –enable-disk-cache –enable-mem-cache
8, php APC cache extension
Php has an APC cache extension, which is php_apc.dll under windows. You need to load this module first, and then configure it in php.ini:
extension=php_apc.dll apc.rfc1867 = on upload_max_filesize = 100M post_max_size = 100M apc.max_file_size = 200M upload_max_filesize = 1000M post_max_size = 1000M max_execution_time = 600 ; 每个PHP页面运行的最大时间值(秒),默认30秒 max_input_time = 600 ; 每个PHP页面接收数据所需的最大时间,默认60 memory_limit = 128M ; 每个PHP页面所吃掉的最大内存,默认8M
9, Opcode cache
We know that the execution process of PHP can be shown in the following figure:
First the PHP code is parsed into Tokens, then compiled into Opcode code, and finally the Opcode code is executed and the result is returned; therefore, for the same PHP file, its Opcode code can be cached the first time it is run, and the Opcode code can be executed next time When viewing the page, it will directly find the opcode code in the cache and execute the last step directly, without the need for intermediate steps.
Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.
Related recommendations:
php determines whether the required parameters in the function exist
PHP (iterative recursion) Detailed explanation of realizing unlimited classification
php supports Chinese file download
The above is the detailed content of Nine methods of PHP caching. For more information, please follow other related articles on the PHP Chinese website!

如何使用PHP优化网站性能和加载速度随着互联网的快速发展,网站的性能和加载速度越来越受到人们的关注。而作为一种广泛使用的服务器端脚本语言,PHP在优化网站性能和加载速度方面具有重要作用。本文将介绍一些使用PHP的技巧和方法,以提高网站的性能和加载速度。使用缓存机制缓存是提高网站性能的一种有效方法。PHP提供了多种缓存机制,如文件缓存、内存缓存和数

随着互联网应用的不断发展,优化网站性能已经成为网站开发的必要任务之一。这其中,缓存技术的使用是一种重要的优化手段。在PHP开发中,通过缓存技术可以提高网站的性能和响应速度,有效避免重复计算和查询数据库等操作,从而实现动态数据的缓存。本文将介绍如何在PHP中利用缓存技术实现动态数据缓存。缓存的概念缓存是一种用于提高应用性能的技术。在网站开发中,缓存就是缓存服务

PHP是一种服务器端编程语言,广泛应用于web开发中。在开发网站过程中,静态资源文件(包括css、js、图片等)的加载速度直接影响着网站的用户体验。因此,如何提高静态资源文件的加载速度成为了开发者需要思考的问题之一。一个解决方案是使用PHP中的缓存技术。在PHP中,静态资源文件的缓存主要分为浏览器缓存和服务器缓存两种。浏览器缓存借助于浏览器的本地缓存机制,减

随着现代Web应用程序的复杂性不断增加,性能问题已成为开发人员面临的一个主要挑战。其中一个常见的性能瓶颈是数据库或文件系统的频繁访问,这可能导致严重的性能问题。缓存技术就是解决这些问题的一种方法。本文将介绍在PHP中使用缓存的基本知识和实现方法。我们将讨论一些流行的PHP缓存技术和如何将它们集成到我们的应用程序中。什么是缓存?缓存是一种将应用程序

PHP是一门广泛应用于Web开发的脚本语言,许多网站都是使用PHP进行开发的。然而,在访问量不断增加的情况下,网站的性能问题也日益突出。为了提升网站的性能,缓存技术是一个非常有效的解决方案。本文将介绍PHP中的缓存技术,旨在帮助读者更好地了解并应用缓存技术提升网站性能。什么是缓存技术缓存技术是一种在应用程序中用于提高数据访问速度的技术。它通过在内存或磁盘中缓

随着互联网的快速发展,如何让应用程序在更短的时间内响应用户请求是一个不断被优化的问题。缓存技术就是其中一种常见的优化手段。本文将会重点讨论PHP中缓存技术对于应用程序响应速度的优化效果。缓存的基础概念缓存是指在应用程序执行过程中,将执行结果临时保存在内存或者磁盘中。当下一次相同的请求到来时,可以直接从内存或者磁盘中读取已经计算得到的结果而不需要再次执行相同的

如何使用PHP的缓存技术提高性能?随着互联网的快速发展,网站性能对于用户体验和SEO排名变得越来越重要。PHP作为一种常用的服务器端脚本语言,其性能对于网站的响应速度起着至关重要的作用。而PHP的缓存技术就是提高性能的一种重要手段。一、为什么使用缓存技术?在了解如何使用PHP的缓存技术之前,我们先来理解为什么需要使用缓存技术。在Web开发中,一个页面的生成通

PHP是一种常见的服务器端脚本语言,而缓存技术是优化性能的有效方式。本文将探讨在不同应用场景中,使用PHP缓存技术的好处和应用方法。Web应用Web应用在启动时需要执行大量的初始化操作,如加载配置文件、数据库连接等。这些操作耗费大量的时间和计算资源,影响Web应用的性能。使用缓存技术可以减少这些初始化操作的执行次数,加快Web应用的响应速度。在Web应用中,


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

Dreamweaver CS6
Visual web development tools

Dreamweaver Mac version
Visual web development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

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

Zend Studio 13.0.1
Powerful PHP integrated development environment
