search
HomeBackend DevelopmentPHP TutorialPlot introduction to the TV series Xue Pinggui and Wang Baochuan Introduction to PHP caching technology

Cache refers to the temporary file exchange area. The computer pulls the most commonly used files from the memory and temporarily places them in the cache, just like moving tools and materials to the workbench. This is more convenient than going to the warehouse to retrieve them when they are used. Because the cache often uses RAM (non-permanent storage that is lost when the power is turned off), the files will still be sent to the hard disk and other storage for permanent storage after the work is completed. The largest cache in a computer is the memory stick. The fastest ones are the L1 and L2 caches built into the CPU. The video memory of the graphics card is a cache for the GPU. There is also a 16M or 32M cache on the hard disk. Never understand cache as one thing, it is a general term for a processing method!
 The most effective way to cope with high traffic in WEB development is to use caching technology, which can effectively improve server load performance and trade space for time.
 The Internet is also 2 8 final, just like the keywords in Baidu search, 80% of people are searching for 20% of the content, so you only need to save the content of these 20% of keywords to be very effective Quickly return the content users need among billions of records.
In this article, let’s take a look at some storage methods commonly used in PHP WEB development.
1. Universal caching technology:
Data caching: The data caching mentioned here refers to the database query PHP caching mechanism. Every time a page is accessed, it will first detect whether the corresponding cached data exists. If it does not exist, it will connect to the database. Obtain the data and serialize the query results and save them to the file. In the future, the same query results will be obtained directly from the cache table or file.
The most widely used example is the search function of Discuz, which caches the result ID into a table and searches the cache table first when searching for the same keyword next time.
  As a common method, when multiple tables are associated, the contents in the attached table are generated into an array and saved in a field of the main table. When necessary, the array is decomposed. This has the advantage of only reading one table, but has two disadvantages. Data synchronization will take many more steps, and the database is always the bottleneck. Trading the hard disk for speed is the key point in this.
2. Page caching:
Every time you visit a page, it will first detect whether the corresponding cached page file exists. If it does not exist, connect to the database, get the data, display the page and generate a cached page file at the same time, so that the next time you visit That's when the page file comes into play. (Template engines and some common PHP caching mechanism classes on the Internet usually have this function)
3. Time-triggered caching:
Check whether the file exists and the timestamp is less than the set expiration time. If the file modification timestamp is less than the current timestamp If the expiration timestamp is large, then use the cache, otherwise update the cache.
4. Content-triggered caching:
When data is inserted or updated, the PHP cache mechanism is forced to be updated.
5. Static caching:
The static caching mentioned here refers to static, directly generating text files such as HTML or XML, and regenerating them when there are updates. It is suitable for pages that do not change much, so I won’t talk about it.
The above content is a code-level solution. I directly CP other frameworks and am too lazy to change. The content is almost the same. It is easy to do and can be used in several ways. However, the following content is a server-side caching solution. At the code level, it requires the cooperation of multiple parties to achieve it
6. Memory cache:
 Memcached is a high-performance, distributed memory object PHP caching mechanism system, used to reduce database load and improve access speed in dynamic applications.
7. PHP buffer:
There are eaccelerator, apc, phpa, xcache. I won’t talk about these. Search a bunch of them and see for yourself. If you know this stuff, it’s OK.
8. MYSQL cache:
This is also considered non-code level. Classic databases use this method. Look at the running time below, 0.09xxx and the like
9. Web cache based on reverse proxy:
  Such as Nginx, SQUID, mod_proxy (apache2 and above) It is also divided into mod_proxy and mod_cache)
10. DNS polling:
BIND is an open source DNS server software. This is a big deal to mention. Search it yourself. Everyone knows that this thing exists.
I know that some big websites such as chinacache do this. To put it simply, it is multi-server. The same page or file is cached on different servers and automatically parsed to the relevant server according to the north and south.
Why use caching technology? The reason is simple: improve efficiency.In program development, the main way to obtain information is to query the database. In addition, it may also be through Web Services or some other method. No matter which method is used, they may become an efficiency bottleneck in the face of a large number of concurrent accesses. , in order to solve these problems, people have proposed many solutions, some of which use optimization software (such as: APC, Eaccelerator, Zend Optimizer, etc.) to improve the running efficiency of the program. Reasonable use of these software can often make the program run smoothly. The efficiency has been improved by orders of magnitude, but the premise is that you must have control of the host to be able to install these software. If you are using a virtual host, you can only pray that your service provider has pre-installed some optimization software. , otherwise you must use PHP yourself to implement the corresponding caching function. If this makes you feel at a loss, I believe the following text can give you some inspiration.
Many PHP programmers use golden partners like Adodb+Smarty, so let’s first take a look at how to use their caching function.
First look at the data caching function provided by adodb:
include('adodb.inc.php'); # load code common to ADOdb
$ADODB_CACHE_DIR = '/usr/ADODB_cache';
$conn = &ADODB ('mysql'); # create a connection
$conn->PConnect('localhost','userid','','agora');# connect to MySQL, agora db
$sql = 'select CustomerName, CustomerID from customers';
$rs = $conn->CacheExecute(15,$sql);
?>
As above, every time the data is queried, the corresponding results will be serialized and saved to the file. The same will happen in the future. The query statement can be obtained from the cache file without querying the database directly.
Let’s take a look at the page caching function provided by Smarty:
require('Smarty.class.php');
$smarty = new Smarty;
$smarty->caching = true;
if(!$ smarty->is_cached('index.tpl')) {
// No cache available, do variable assignments here.
$contents = get_database_contents();
$smarty->assign($contents);
}
$ smarty->display('index.tpl');
?>
As above, every time you access the page, it will first detect whether the corresponding cache exists. If it does not exist, connect to the database, get the data, and complete the template variables Assignment, display the page, and generate a cache file at the same time, so that the cache file will take effect the next time it is accessed, and the data query statement of the if block will not be executed. Of course, there are many things to consider in actual use, such as the setting of the validity period, the setting of the cache group, etc. For details, you can check the relevant chapters on caching in the Smarty manual.
The emphasis of the caching methods of the above two popular PHP components is different. For Adodb's cache, it caches data, while for Smarty's cache, it caches pages. There are many other components that provide caching functions (such as: PEAR::Cache_Lite, etc.). Which solution to use in actual programming requires specific analysis of the specific situation, and may also be used comprehensively.
An obvious benefit of using the built-in caching solutions of these components is that their implementation is transparent to the client. Just make the necessary settings (such as cache time, cache directory, etc.) without thinking too much about the details of caching. The system will automatically manage the cache according to the settings. But its shortcomings are also obvious, because each request still needs to be parsed by PHP, and the efficiency is still greatly reduced compared with pure static. It still cannot meet the requirements in the face of large PV. In this case, just doing dynamic caching is not enough. Yes, static caching must be implemented.

The above has introduced the plot introduction of the TV series Xue Pinggui and Wang Baochuan and the introduction of PHP caching technology, including the plot introduction of the TV series Xue Pinggui and Wang Baochuan. I hope it will be helpful to friends who are interested in PHP tutorials.

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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

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 Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version