From bb522f93d2855f94f5f863539d2f7f71deb2f800 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 5 Feb 2018 09:12:13 +0100 Subject: [PATCH] Improve the cache config reference --- reference/configuration/framework.rst | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index f665ba2479d..fad4474e465 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -1814,13 +1814,15 @@ app **type**: ``string`` **default**: ``cache.adapter.filesystem`` The cache adapter used by the ``cache.app`` service. The FrameworkBundle -ships with multiple adapters: ``apcu``, ``doctrine``, ``system``, ``filesystem``, -``psr6``, ``redis`` and ``memcached``. +ships with multiple adapters: ``cache.adapter.apcu``, ``cache.adapter.doctrine``, +``cache.adapter.system``, ``cache.adapter.filesystem``, ``cache.adapter.psr6``, +``cache.adapter.redis`` and ``cache.adapter.memcached``. .. tip:: - It might be tough to understand at the beginning, so to avoid confusion remember that all pools perform the - same actions but on different medium given the adapter they are based on. Internally, a pool wraps the definition + It might be tough to understand at the beginning, so to avoid confusion + remember that all pools perform the same actions but on different medium + given the adapter they are based on. Internally, a pool wraps the definition of an adapter. system @@ -1828,7 +1830,8 @@ system **type**: ``string`` **default**: ``cache.adapter.system`` -The cache adapter used by the ``cache.system`` service. +The cache adapter used by the ``cache.system`` service. It supports the same +adapters available for the ``cache.app`` service. directory .........