


Analysis of the principles of using client-side caching to optimize websites Page 1/2_PHP Tutorial
Many people first want to optimize the program from the server cache aspect. Many different server cache methods have their own characteristics. For example, in some projects I have participated in, I have used Com+/Enterprise Libiary Caching according to the cache hit rate. Server-side caching and HTTP Compression technology in Windows services, static files, etc., but client-side caching is often ignored by people. Even if the server’s cache makes your page access very fast, it still needs to rely on browser downloads. And output, and when you add client-side caching, it will bring you a lot of benefits. Because she can cache the most frequently accessed pages in the site, fully improving the throughput of the Web server (usually in terms of requests per second data computing) to improve application performance and scalability.
An online shopping survey shows that most people are willing to queue in stores, but are not willing to wait when shopping online. Websense research company claims that as many as 70% of Internet users are unwilling to read a page for more than 10 seconds. More than 70% of people will cancel their current order because the speed is too slow.
Basic knowledge
1) What is "Last-Modified"?
When the browser requests a URL for the first time, the return status from the server will be 200, The content is the resource you requested, and there is a Last-Modified attribute that marks the time when this file was last modified at the end of the service. The format is similar to this:
Last-Modified: Fri, 12 May 2006 18:53 :33 GMT
When the client requests this URL for the second time, according to the provisions of the HTTP protocol, the browser will send the If-Modified-Since header to the server to ask whether the file has been modified after this time:
If-Modified-Since: Fri, 12 May 2006 18:53:33 GMT
If the resource on the server side has not changed, it will automatically return HTTP 304 (Not Changed.) status code, the content is Empty, thus saving the amount of data to be transmitted. When the server-side code changes or the server is restarted, the resource is reissued and the return is similar to the first request. This ensures that resources are not sent to the client repeatedly, and also ensures that when the server changes, the client can get the latest resources.
2) What is "Etag"?
HTTP protocol specification defines ETag as "the entity value of the requested variable" (see - Chapter 14.19). Another way to put it is that an ETag is a token that can be associated with a Web resource. A typical web resource would be a web page, but it could also be a JSON or XML document. The server is solely responsible for determining what the token is and its meaning, and transmitting it to the client in the HTTP response header. The following is the format returned by the server:
ETag: "50b1c1d4f775c61:df3"
The query update format of the client is as follows:
If-None-Match: W/"50b1c1d4f775c61:df3"
If the ETag has not changed, status 304 will be returned and then not returned, which is also Same as Last-Modified. I tested Etag mainly to be useful during breakpoint downloads.
How do Last-Modified and Etags help improve performance?
Smart developers will use Last-Modified and ETags request http headers together, which can take advantage of the client (such as a browser) cache. Because the server generates the Last-Modified/Etag tag first, the server can use it later to determine whether the page has been modified. Essentially, the client is asking the server to validate its (client-side) cache by passing this token back to the server.
The process is as follows:
1. The client requests a page (A).
2. The server returns page A and adds a Last-Modified/ETag to A.
3. The client displays the page and caches the page together with Last-Modified/ETag.
4. The client requests page A again and passes the Last-Modified/ETag returned by the server in the last request to the server.
5. The server checks the Last-Modified or ETag and determines that the page has not been modified since the last client request, and directly returns response 304 and an empty response body.
The following example describes how to use server-side code to operate client-side caching:

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

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

Hot Article

Hot Tools

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Time complexity measures the execution time of an algorithm relative to the size of the input. Tips for reducing the time complexity of C++ programs include: choosing appropriate containers (such as vector, list) to optimize data storage and management. Utilize efficient algorithms such as quick sort to reduce computation time. Eliminate multiple operations to reduce double counting. Use conditional branches to avoid unnecessary calculations. Optimize linear search by using faster algorithms such as binary search.

How to install PHPFFmpeg extension on server? Installing the PHPFFmpeg extension on the server can help us process audio and video files in PHP projects and implement functions such as encoding, decoding, editing, and processing of audio and video files. This article will introduce how to install the PHPFFmpeg extension on the server, as well as specific code examples. First, we need to ensure that PHP and FFmpeg are installed on the server. If FFmpeg is not installed, you can follow the steps below to install FFmpe

In PHP development, the caching mechanism improves performance by temporarily storing frequently accessed data in memory or disk, thereby reducing the number of database accesses. Cache types mainly include memory, file and database cache. Caching can be implemented in PHP using built-in functions or third-party libraries, such as cache_get() and Memcache. Common practical applications include caching database query results to optimize query performance and caching page output to speed up rendering. The caching mechanism effectively improves website response speed, enhances user experience and reduces server load.

According to news from this website on July 23, ASUS has launched a variety of server and workstation-level products powered by AMD EPYC 4004 series processors. Note from this site: AMD launched the AM5 platform and Zen4 architecture EPYC 4004 series processors in May, offering up to 16-core 3DV-Cache specifications. ASUSProER100AB6 server ASUSProER100AB6 is a 1U rack server product equipped with EPYC Xiaolong 4004 series processor, suitable for the needs of IDC and small and medium-sized enterprises. ASUSExpertCenterProET500AB6 workstation ASUSExpertCenterProET500AB6 is a

In the Go distributed system, caching can be implemented using the groupcache package. This package provides a general caching interface and supports multiple caching strategies, such as LRU, LFU, ARC and FIFO. Leveraging groupcache can significantly improve application performance, reduce backend load, and enhance system reliability. The specific implementation method is as follows: Import the necessary packages, set the cache pool size, define the cache pool, set the cache expiration time, set the number of concurrent value requests, and process the value request results.

Table of Contents Astar Dapp Staking Principle Staking Revenue Dismantling of Potential Airdrop Projects: AlgemNeurolancheHealthreeAstar Degens DAOVeryLongSwap Staking Strategy & Operation "AstarDapp Staking" has been upgraded to the V3 version at the beginning of this year, and many adjustments have been made to the staking revenue rules. At present, the first staking cycle has ended, and the "voting" sub-cycle of the second staking cycle has just begun. To obtain the "extra reward" benefits, you need to grasp this critical stage (expected to last until June 26, with less than 5 days remaining). I will break down the Astar staking income in detail,

Title: Is Tencent’s main programming language Go: An in-depth analysis. As China’s leading technology company, Tencent has always attracted much attention in its choice of programming languages. In recent years, some people believe that Tencent mainly adopts Go as its main programming language. This article will conduct an in-depth analysis of whether Tencent's main programming language is Go, and give specific code examples to support this view. 1. Application of Go language in Tencent Go is an open source programming language developed by Google. Its efficiency, concurrency and simplicity are loved by many developers.

Five ways to optimize PHP function efficiency: avoid unnecessary copying of variables. Use references to avoid variable copying. Avoid repeated function calls. Inline simple functions. Optimizing loops using arrays.
