{% extends "skeleton.html" %} {% block page_title %}Memcache Viewer{% endblock %} {% block page_head %} {% endblock %} {% block body %}

Memcache Viewer

{% if message %}
{{ message }}
{% endif %} {% if show_stats %}
Hit ratio: {{ hitratio }}% (hits: {{ stats.hits }} misses: {{ stats.misses }})
Size of cache: items: {{ stats["items"] }} size: {{ stats.bytes|bytesizeformat }}
{% endif %} {% if show_value %} {% if key_exists %} {% if type == "error" %}
Error fetching {{ key }}: {{ value }}
{% else %}
"{{ key }}" is a {{ type }}:
{{ value }}
{% endif %} {% else %}
No such key: {{ key }}
{% endif %} {% endif %} {% if show_valueform %}
Key {{ key }}
Type {% if key_exists %} {{ type }} {% else %} {% endif %}
Value
  {% if writable %} {% endif %}
{% endif %} {% endblock %}