@@ -87,7 +87,6 @@ adapter (template) they use by using the ``app`` and ``system`` key like:
87
87
The Cache component comes with a series of adapters already created:
88
88
89
89
* :doc: `cache.adapter.apcu </components/cache/adapters/apcu_adapter >`
90
- * :doc: `cache.adapter.array </components/cache/adapters/array_cache_adapter >`
91
90
* :doc: `cache.adapter.doctrine </components/cache/adapters/doctrine_adapter >`
92
91
* :doc: `cache.adapter.filesystem </components/cache/adapters/filesystem_adapter >`
93
92
* :doc: `cache.adapter.memcached </components/cache/adapters/memcached_adapter >`
@@ -190,7 +189,7 @@ You can also create more customized pools. All you need is an adapter:
190
189
default_memcached_provider : ' memcached://localhost'
191
190
pools :
192
191
my_cache_pool :
193
- adapter : cache.adapter.array
192
+ adapter : cache.adapter.filesystem
194
193
cache.acme :
195
194
adapter : cache.adapter.memcached
196
195
cache.foobar :
@@ -209,7 +208,7 @@ You can also create more customized pools. All you need is an adapter:
209
208
210
209
<framework : config >
211
210
<framework : cache default_memcached_provider =" memcached://localhost" >
212
- <framework : pool name =" my_cache_pool" adapter =" cache.adapter.array " />
211
+ <framework : pool name =" my_cache_pool" adapter =" cache.adapter.filesystem " />
213
212
<framework : pool name =" cache.acme" adapter =" cache.adapter.memcached" />
214
213
<framework : pool name =" cache.foobar" adapter =" cache.adapter.memcached" provider =" memcached://user:[email protected] " />
215
214
</framework : cache >
@@ -224,7 +223,7 @@ You can also create more customized pools. All you need is an adapter:
224
223
'default_memcached_provider' => 'memcached://localhost',
225
224
'pools' => [
226
225
'my_cache_pool' => [
227
- 'adapter' => 'cache.adapter.array ',
226
+ 'adapter' => 'cache.adapter.filesystem ',
228
227
],
229
228
'cache.acme' => [
230
229
'adapter' => 'cache.adapter.memcached',
@@ -421,7 +420,7 @@ case the value needs to be recalculated.
421
420
cache.apcu :
422
421
adapter : cache.adapter.apcu
423
422
cache.array :
424
- adapter : cache.adapter.array
423
+ adapter : cache.adapter.filesystem
425
424
426
425
427
426
services :
@@ -446,7 +445,7 @@ case the value needs to be recalculated.
446
445
<framework : pool name =" my_cache_pool" adapter =" cache.adapter.psr6" provider =" app.my_cache_chain_adapter" />
447
446
<framework : pool name =" cache.my_redis" adapter =" cache.adapter.redis" provider =" redis://user:[email protected] " />
448
447
<framework : pool name =" cache.apcu" adapter =" cache.adapter.apcu" />
449
- <framework : pool name =" cache.array" adapter =" cache.adapter.array " />
448
+ <framework : pool name =" cache.array" adapter =" cache.adapter.filesystem " />
450
449
</framework : cache >
451
450
</framework : config >
452
451
@@ -480,7 +479,7 @@ case the value needs to be recalculated.
480
479
'adapter' => 'cache.adapter.apcu',
481
480
],
482
481
'cache.array' => [
483
- 'adapter' => 'cache.adapter.array ',
482
+ 'adapter' => 'cache.adapter.filesystem ',
484
483
],
485
484
],
486
485
],
0 commit comments