{% extends "base.html" %} {% block title %}Response Cache - AISBF Dashboard{% endblock %} {% block content %}

Response Cache Management

📊 Analytics 💾 Response Cache ⏱️ Rate Limits

Cache Statistics

Status
{% if stats.enabled %}Enabled{% else %}Disabled{% endif %}
Backend
{{ stats.backend|upper }}
Cache Hits
{{ stats.hits }}
Cache Misses
{{ stats.misses }}
Hit Rate
{{ "%.1f"|format(stats.hit_rate * 100) }}%
Cache Size
{{ stats.size }}
Evictions
{{ stats.evictions }}

Cache Actions

{% if stats.error %}
Error: {{ stats.error }}
{% endif %}

About Response Cache

The response cache stores API responses to reduce redundant requests and improve performance. When enabled, identical requests will be served from cache instead of making new API calls.

{% endblock %}