{% extends 'base.html.twig' %} {% block title %}Cache Management - {{ parent() }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block layout %}

Cache Management

Caching Strategy Overview

Your newsroom application uses a multi-layered caching strategy:

Loading cache status...

Cache Types Explained

Assets Cache (newsroom-assets-v1)
Stores JS files, CSS files, fonts, and images. Uses "cache-first" strategy for fast loading.
Static Cache (newsroom-static-v1)
Stores static pages like About, Roadmap, etc. Uses "network-first" strategy for fresh content.
Runtime Cache (newsroom-runtime-v1)
Stores API responses and dynamic content with short expiration times.

Asset Caching Details

The following asset types are automatically cached:

Performance Benefits

{% endblock %}