@@ -117,6 +117,7 @@ Configuration
117117 * `default_doctrine_provider `_
118118 * `default_psr6_provider `_
119119 * `default_redis_provider `_
120+ * `default_memcached_provider `_
120121 * `pools `_
121122 * :ref: `name <reference-cache-pools-name >`
122123 * `adapter `_
@@ -250,7 +251,7 @@ need to escape the percent signs (``%``) by doubling them.
250251.. note ::
251252
252253 If both ``framework.ide `` and ``xdebug.file_link_format `` are defined,
253- Symfony uses the value of the ``framework.ide `` option.
254+ Symfony uses the value of the ``xdebug.file_link_format `` option.
254255
255256.. tip ::
256257
@@ -1733,7 +1734,7 @@ app
17331734
17341735The cache adapter used by the ``cache.app `` service. The FrameworkBundle
17351736ships with multiple adapters: ``apcu ``, ``doctrine ``, ``system ``, ``filesystem ``,
1736- ``psr6 `` and ``redis ``.
1737+ ``psr6 ``, `` redis `` and ``memcached ``.
17371738
17381739.. tip ::
17391740
@@ -1780,6 +1781,17 @@ default_redis_provider
17801781The DSN to use by the Redis provider. The provider is available as the ``cache.redis ``
17811782service.
17821783
1784+ default_memcached_provider
1785+ ..........................
1786+
1787+ .. versionadded :: 3.3
1788+ The ``default_memcached_provider `` option was introduced in Symfony 3.3.
1789+
1790+ **type **: ``string `` **default **: ``memcached://localhost ``
1791+
1792+ The DSN to use by the Memcached provider. The provider is available as the ``cache.memcached ``
1793+ service.
1794+
17831795pools
17841796.....
17851797
@@ -2017,6 +2029,7 @@ Full Default Configuration
20172029 default_doctrine_provider : ~
20182030 default_psr6_provider : ~
20192031 default_redis_provider : ' redis://localhost'
2032+ default_memcached_provider : ' memcached://localhost'
20202033 pools :
20212034 # Prototype
20222035 name :
0 commit comments