Skip to content

Improve the cache config reference #9202

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions reference/configuration/framework.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1814,21 +1814,24 @@ 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
......

**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
.........
Expand Down