@@ -117,6 +117,7 @@ Configuration
117
117
* `default_doctrine_provider `_
118
118
* `default_psr6_provider `_
119
119
* `default_redis_provider `_
120
+ * `default_memcached_provider `_
120
121
* `pools `_
121
122
* :ref: `name <reference-cache-pools-name >`
122
123
* `adapter `_
@@ -250,7 +251,7 @@ need to escape the percent signs (``%``) by doubling them.
250
251
.. note ::
251
252
252
253
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.
254
255
255
256
.. tip ::
256
257
@@ -1733,7 +1734,7 @@ app
1733
1734
1734
1735
The cache adapter used by the ``cache.app `` service. The FrameworkBundle
1735
1736
ships with multiple adapters: ``apcu ``, ``doctrine ``, ``system ``, ``filesystem ``,
1736
- ``psr6 `` and ``redis ``.
1737
+ ``psr6 ``, `` redis `` and ``memcached ``.
1737
1738
1738
1739
.. tip ::
1739
1740
@@ -1780,6 +1781,17 @@ default_redis_provider
1780
1781
The DSN to use by the Redis provider. The provider is available as the ``cache.redis ``
1781
1782
service.
1782
1783
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
+
1783
1795
pools
1784
1796
.....
1785
1797
@@ -2017,6 +2029,7 @@ Full Default Configuration
2017
2029
default_doctrine_provider : ~
2018
2030
default_psr6_provider : ~
2019
2031
default_redis_provider : ' redis://localhost'
2032
+ default_memcached_provider : ' memcached://localhost'
2020
2033
pools :
2021
2034
# Prototype
2022
2035
name :
0 commit comments