Performance: Template fragment caching
MEDIUM IMPACT
Improves page load speed by caching parts of the HTML template to avoid repeated rendering.
{% load cache %}
{% cache 600 sidebar_cache_key %}
<div>{% include 'sidebar.html' %}</div>
{% endcache %}{% load cache %}
<div>{% include 'sidebar.html' %}</div>| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| No caching, full template render | N/A (server-side) | N/A | N/A | [X] Bad |
| Template fragment caching enabled | N/A (server-side) | N/A | N/A | [✓] Good |