@@ -189,7 +189,7 @@ You can also create more customized pools. All you need is an adapter:
189
189
default_memcached_provider : ' memcached://localhost'
190
190
pools :
191
191
my_cache_pool :
192
- adapter : cache.adapter.array
192
+ adapter : cache.adapter.filesystem
193
193
cache.acme :
194
194
adapter : cache.adapter.memcached
195
195
cache.foobar :
@@ -208,7 +208,7 @@ You can also create more customized pools. All you need is an adapter:
208
208
209
209
<framework : config >
210
210
<framework : cache default_memcached_provider =" memcached://localhost" >
211
- <framework : pool name =" my_cache_pool" adapter =" cache.adapter.array " />
211
+ <framework : pool name =" my_cache_pool" adapter =" cache.adapter.filesystem " />
212
212
<framework : pool name =" cache.acme" adapter =" cache.adapter.memcached" />
213
213
<framework : pool name =" cache.foobar" adapter =" cache.adapter.memcached" provider =" memcached://user:password@example.com" />
214
214
</framework : cache >
@@ -223,7 +223,7 @@ You can also create more customized pools. All you need is an adapter:
223
223
'default_memcached_provider' => 'memcached://localhost',
224
224
'pools' => [
225
225
'my_cache_pool' => [
226
- 'adapter' => 'cache.adapter.array ',
226
+ 'adapter' => 'cache.adapter.filesystem ',
227
227
],
228
228
'cache.acme' => [
229
229
'adapter' => 'cache.adapter.memcached',
@@ -420,7 +420,7 @@ case the value needs to be recalculated.
420
420
cache.apcu :
421
421
adapter : cache.adapter.apcu
422
422
cache.array :
423
- adapter : cache.adapter.array
423
+ adapter : cache.adapter.filesystem
424
424
425
425
426
426
services :
@@ -445,7 +445,7 @@ case the value needs to be recalculated.
445
445
<framework : pool name =" my_cache_pool" adapter =" cache.adapter.psr6" provider =" app.my_cache_chain_adapter" />
446
446
<framework : pool name =" cache.my_redis" adapter =" cache.adapter.redis" provider =" redis://user:password@example.com" />
447
447
<framework : pool name =" cache.apcu" adapter =" cache.adapter.apcu" />
448
- <framework : pool name =" cache.array" adapter =" cache.adapter.array " />
448
+ <framework : pool name =" cache.array" adapter =" cache.adapter.filesystem " />
449
449
</framework : cache >
450
450
</framework : config >
451
451
@@ -479,7 +479,7 @@ case the value needs to be recalculated.
479
479
'adapter' => 'cache.adapter.apcu',
480
480
],
481
481
'cache.array' => [
482
- 'adapter' => 'cache.adapter.array ',
482
+ 'adapter' => 'cache.adapter.filesystem ',
483
483
],
484
484
],
485
485
],
0 commit comments