{% extends "admin/base_site.html" %} {% load i18n %} {% block content %} Cache backend: {{cache_backend}}

Statistics

{% if cache_hosts %} {% for hostname,stats in cache_hosts %}
{{hostname}}
{% trans "Memory usage:" %} {{stats.bytes|filesizeformat}}
{% trans "Keys in cache:" %} {{stats.curr_items}} of {{stats.total_items}}
{% trans "Cache hits:" %} {{stats.get_hits}} of {{stats.cmd_get}}: {{stats.hit_rate}}%
{% trans "Cache misses:" %} {{stats.get_misses}} of {{stats.cmd_get}}: {{stats.miss_rate}}%
{% trans "Cache evictions:" %} {{stats.evictions}}
{% trans "Cache traffic:" %} {{stats.bytes_read|filesizeformat}} in, {{stats.bytes_written|filesizeformat}} out
{% trans "Uptime:" %} {{stats.uptime}}
{% endfor %} {% else %}

{% trans "Statistics are not available for this backend." %}

{% endif %} {% endblock %}