💡 Recommendations
{% if data.memory_usage_mb > 500 %}
High Memory Usage: Consider implementing memory cleanup
or reducing data loading.
{% endif %} {% if data.template_memory_mb > 10 %}
Template Memory: Template rendering used {{
data.template_memory_mb }}MB. Consider reducing context size.
{% endif %} {% if data.template_render_time_ms > 100 %}
Template Performance: Rendering took {{
data.template_render_time_ms }}ms. Consider template optimization.
{% endif %}