Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 440 Bytes

caching.md

File metadata and controls

6 lines (4 loc) · 440 Bytes

Caching

Caching is intelligent laziness. The work from previously performed tasks should be reused anywhere it can be. A browser shouldn't download a CSS file that hasn't changed since the last page load, and an application shouldn't requery a database if the value hasn't changed since the last time it checked.

See HTTP > Caching, Web Server > Caching, and PHP > Caching.