django-cachedjango-caching

How does Django cache system works?


How does Django cache system works?


Solution

  • Django comes with a robust cache system that lets you save dynamic pages so they don't have to be calculated for each request. For convenience, Django offers different levels of cache granularity: You can cache the output of specific views, you can cache only the pieces that are difficult to produce, or you can cache your entire site.

    Check this article