I have always wanted to learn about caching. After all, cache plays a big part in front-end performance optimization. There are two types of cache: mandatory cache and negotiated cache. I have read many articles about the differences between them, but I have never used them in practice. I only know their meaning but don’t know how to set them. The lack of practical experience also leads to vague memory. Practice is the best teacher! Let me record my process of learning cache using nginx server. Preliminary Study First, I created a new server { listen 8080; server_name localhost; location / { root /Volumes/myFile/nginx_root; index index.html index.htm; } } Then we open the browser and access localhost:8080. Open the console and find two requests: You can see that for the first access, the status codes of both requests are 200. Let's click on one of the requests to see the response header information: As you can see, the response header carries Why do some caches show 200 OK (from cache) and others show 304 Not Modified? It's very simple, just check whether the Entity Tag is removed. If removed, it will always be 200 OK (from cache). Without removal, the two will appear alternately. So, what is the difference in the timing of the two triggers? 200 OK (from cache) is triggered by directly clicking a link or by typing in a URL and pressing Enter. 304 Not Modified is triggered when the page is refreshed or when a strong cache is set but the Entity Tags are not removed. In contrast to my example, this is how I understand it: the You can see that nginx disable strong cache Let's see what happens after trying to disable strong caching in nginx . Modify the nginx configuration file: server { listen 8080; server_name localhost; location / { root /Volumes/myFile/nginx_root; index index.html index.htm; add_header Cache-Control no-cache; # public can be cached by any object, private can only be cached by individual users and cannot be cached by proxy servers add_header Cache-Control private; } } After modifying the nginx configuration file, we restart the nginx server. At this time, visit localhost:8080 As you can see, at this time, both the HTML file and the JS file are 304 and both hit the negotiation cache. Cache-Control: no-store Disable all caching (this means that the response will not be cached). A cache will typically behave like a non-caching proxy server, forwarding a no-store response to the client and then deleting the object. Cache-Control: no-cache Force the client to send requests directly to the server, that is, each request must be sent to the server. The server receives the request and then determines whether the resource has changed. If so, it returns the new content. Otherwise, it returns 304, indicating that the resource has not changed. This can easily be misleading, leading people to believe that the response is not cached. In fact, Cache-Control: no-cache will be cached, but each time the response data is provided to the client (browser), the cache must evaluate the validity of the cached response from the server. In fact, setting Cache-Control to no-store is the real meaning of not being cached. Then modify the nginx file and set Cache-Control to no-store to see what happens. Refresh your browser again at this point. It can be seen that after modifying the nginx configuration file, except for the first time which was 304 (the browser just received the no-store information this time, and the request header still carried cache-related information), the remaining few refreshes of the page all returned 200. Neither the strong cache nor the negotiation cache is hit. Let's take a look at the http header information of the I didn't capture the entire picture here. In fact, the response header also includes Cache-Control: no-store . It can be seen that with the support of Cache-Control: no-store , even if the service returns the negotiation cache parameters in the response header, the browser does not bring the cache-related parameters when requesting resources. Therefore, there is no cache now, and neither the strong cache nor the negotiation cache will be hit. The resources of each http request are returned from the server. Conclusion This exploration has ended now. In fact, it is just a record of my learning. After practicing it once, I have a clearer understanding and cognition of cache. It is true that practice makes perfect. Later, I plan to write an article on how to use nginx to deploy front-end resources and configure related caches after the front-end is packaged using frameworks such as React.js or Vue.js. I will see if there is any point in recording it then. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: jQuery implements form validation
Table of contents 1. Definition and Use 1.1 Defin...
First, let’s look at the GIF operation: Case 1: S...
Table of contents introduce Object attributes in ...
There is no need to say much about the difference...
Preface Anyone who has learned JavaScript must be...
Purpose Understand the role of nextTick and sever...
Preface MySQL slow query log is a function that w...
In fact, there are many corresponding writing met...
Table of contents Overview definition Instance Me...
Main library execution CREATE DATABASE test CHARA...
html2canvas is a library that generates canvas fr...
UPD 2020.2.26 Currently Ubuntu 20.04 LTS has not ...
glibc is the libc library released by gnu, that i...
Table of contents 01 Scenario Analysis 02 Operati...
Preface: I heard a long time ago that MySQL 8.0 s...