Caching stores previously retrieved content so it is available faster on repeat requests, relieving both servers and the network.
means storing content temporarily so it does not have to be regenerated or transferred again on each request. With browser caching, the browser stores files such as images, and JavaScript locally, so returning visitors load pages faster. In addition, there is server-side caching such as page cache, object cache or OPcache, as well as edge caching in the .
Caching is an important lever for server response (, TTFB) and thus indirectly for . Missing caching is a common cause of slow loading times. Typical measures:
enable server-side page and object caching,
set caching headers correctly for static assets,
use edge caching via a CDN,
configure server-side caching in the , for example WordPress.
A good PageSpeed check therefore also verifies whether caching is active and sensibly configured.