Description
Add caching to Flask applications through a reusable extension. It helps web projects store expensive responses, computations, or shared values so repeated requests do less work.
This is application infrastructure, not a cache server. Cached content can expose private data or become stale, so projects should choose keys, expiration, invalidation, and per-user behavior carefully.