View or flush cache keys

{% if result %}

{% if flushed %}Cache flushed{% else %}Cache contents{% endif %}

{% for name, value in result %} {% if flushed %} {% if multi %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %} {% if flushed %} {%- else %} {{ (delta*1000)|number_format(3) }} msec {%- endif %} {% endif %}
NameValue
{{ name }}Flushed {{ value|number_format }} key{{ value|plural }} in this namespace{{ value }} {%- if value is null -%} null {%- elseif value is iterable -%} {{- dump(value) -}} {%- elseif value == false -%} false {%- else -%} {{- value -}} {%- endif -%}
Flush performed in {%- if delta > 1 %} {{ delta|number_format(3) }} sec
{% endif %}

Inspection

View or flush keys (separated by spaces). Remember to check the checkbox to validate that you really want to flush content.


{% if can_flush %} {% endif %}
{% if can_flush %}

Bulk eraser

Flush collections. Warning: may be so slow as to cause a gateway timeout, but the process will complete.

{% for name in namespace|keys %} {% endfor %} {% for list in namespace %} {% endfor %} {% for name in namespace|keys %} {% endfor %} {% for name in namespace|keys %} {% endfor %}
{{ name }}
{% for field, shape in list %}
{% endfor %}
If you also want to flush a specfic collection (or more) that is not listed, you may write it in below (e.g. artist_foo_*, space separated, in the appropriate column).
write-in

{% endif %}