{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Gestion du Cache{% endblock %} {% block content %}

Gestion du Cache

Optimisation et maintenance du cache système

{# Statistiques Cache #}

Statistiques du Cache

Taille totale
{{ cache_stats.formatted_size }}
Fichiers
{{ cache_stats.file_count }}
Pools actifs
{{ cache_stats.pools|length }}
{# Actions Cache #}

Actions

{# Vider le cache #}
{# Préchauffer le cache #}
{# Vider OPcache #} {% if cache_stats.opcache.enabled %}
{% endif %}
{# OPcache Stats #} {% if cache_stats.opcache.enabled %}

OPcache

Mémoire utilisée
{{ cache_stats.opcache.formatted.memory_used }}
Mémoire libre
{{ cache_stats.opcache.formatted.memory_free }}
Scripts en cache
{{ cache_stats.opcache.cached_scripts }}
Hits / Misses
{{ cache_stats.opcache.hits }} / {{ cache_stats.opcache.misses }}
{% endif %} {# Pools de cache #} {% if cache_stats.pools|length > 0 %}

Pools de Cache

{% for pool in cache_stats.pools %}
{{ pool }}
{% endfor %}
{% endif %} {% endblock %}