Serve static assets with an efficient cache policy

HTTP caching can speed up your page load time on repeat visits.

When a browser requests a resource, the server providing the resource can tell the browser how long it should temporarily store or cache the resource. For any subsequent request for that resource, the browser uses its local copy rather than getting it from the network.

How the Lighthouse cache policy audit fails #

Lighthouse flags all static resources that aren't cached:

 

 

 

 

Lighthouse considers a resource cacheable if all the following conditions are met:

  • The resource is a font, image, media file, script, or stylesheet.
  • The resource has a 200203, or 206 HTTP status code.
  • The resource doesn't have an explicit no-cache policy.

When a page fails the audit, Lighthouse lists the results in a table with three columns:

URL The location of the cacheable resource
Cache TTL The current cache duration of the resource
Size An estimate of the data your users would save if the flagged resource had been cached

See the Lighthouse performance scoring post to learn how your page's overall performance score is calculated.

How to cache static resources using HTTP caching #

Configure your server to return the Cache-Control HTTP response header:

Cache-Control: max-age=31536000

The max-age directive tells the browser how long it should cache the resource in seconds. This example sets the duration to 31536000, which corresponds to 1 year: 60 seconds × 60 minutes × 24 hours × 365 days = 31536000 seconds.

When possible, cache immutable static assets for a long time, such as a year or longer.

One risk of long cache durations is that your users won't see updates to static files. You can avoid this issue by configuring your build tool to embed a hash in your static asset filenames so that each version is unique, prompting the browser to fetch the new version from the server. (To learn how to embed hashes using webpack, see webpack's Caching guide.)

Use no-cache if the resource changes and freshness matters, but you still want to get some of the speed benefits of caching. The browser still caches a resource that's set to no-cache but checks with the server first to make sure that the resource is still current.

A longer cache duration isn't always better. Ultimately, it's up to you to decide what the optimal cache duration is for your resources.

There are many directives for customizing how the browser caches different resources. Learn more about caching resources in The HTTP cache: your first line of defense guide and Configuring HTTP caching behavior codelab.

How to verify cached responses in Chrome DevTools #

To see which resources the browser is getting from its cache, open the Network tab in Chrome DevTools:

  1. Press Control+Shift+J (or Command+Option+J on Mac) to open DevTools.
  2. Click the Network tab.

The Size column in Chrome DevTools can help you verify that a resource has been cached:

 

Chrome serves the most requested resources from the memory cache, which is very fast, but is cleared when the browser is closed.

To verify a resource's Cache-Control header is set as expected, check its HTTP header data:

  1. Click the URL of the request, under the Name column of the Requests table.
  2. Click the Headers tab.

 

 

Resources #

 轉自:https://web.dev/uses-long-cache-ttl/

 

關於web性能優化可以參看這些系列:

https://web.dev/lighthouse-performance/

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章