HostingChecker

Glossary

Caching

Caching stores copies of data or pages so repeat requests are served instantly, reducing server work and dramatically speeding up websites.

Caching stores copies of data, files, or rendered pages so that repeated requests can be served quickly without redoing expensive work. It is one of the most effective ways to make a website fast.

Layers of caching

  • Browser cache — assets stored on the visitor's device, controlled by Cache-Control headers and influenced by ttl.
  • CDN / edge cache — a cdn serves cached content from a nearby location.
  • Page cache — full HTML pages cached on the server (vital for wordpress and other cms sites).
  • Object cache — database query results (e.g. Redis, Memcached) reducing mysql load.
  • OPcache — compiled php bytecode kept in memory.

Why it matters for hosting

Caching slashes ttfb and server load, directly improving core-web-vitals. The right combination — server, edge, and application caching, often via nginx, litespeed, or a reverse-proxy — is the single biggest lever for performance on dynamic sites.

See also