Skip to content

Commit cbbea6f

Browse files
committed
Removed the cache.adapter.array mention in 3.4 docs
1 parent a7ce064 commit cbbea6f

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

cache.rst

+6-7
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ adapter (template) they use by using the ``app`` and ``system`` key like:
8787
The Cache component comes with a series of adapters already created:
8888

8989
* :doc:`cache.adapter.apcu </components/cache/adapters/apcu_adapter>`
90-
* :doc:`cache.adapter.array </components/cache/adapters/array_cache_adapter>`
9190
* :doc:`cache.adapter.doctrine </components/cache/adapters/doctrine_adapter>`
9291
* :doc:`cache.adapter.filesystem </components/cache/adapters/filesystem_adapter>`
9392
* :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:
190189
default_memcached_provider: 'memcached://localhost'
191190
pools:
192191
my_cache_pool:
193-
adapter: cache.adapter.array
192+
adapter: cache.adapter.filesystem
194193
cache.acme:
195194
adapter: cache.adapter.memcached
196195
cache.foobar:
@@ -209,7 +208,7 @@ You can also create more customized pools. All you need is an adapter:
209208
210209
<framework:config>
211210
<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"/>
213212
<framework:pool name="cache.acme" adapter="cache.adapter.memcached"/>
214213
<framework:pool name="cache.foobar" adapter="cache.adapter.memcached" provider="memcached://user:[email protected]"/>
215214
</framework:cache>
@@ -224,7 +223,7 @@ You can also create more customized pools. All you need is an adapter:
224223
'default_memcached_provider' => 'memcached://localhost',
225224
'pools' => [
226225
'my_cache_pool' => [
227-
'adapter' => 'cache.adapter.array',
226+
'adapter' => 'cache.adapter.filesystem',
228227
],
229228
'cache.acme' => [
230229
'adapter' => 'cache.adapter.memcached',
@@ -421,7 +420,7 @@ case the value needs to be recalculated.
421420
cache.apcu:
422421
adapter: cache.adapter.apcu
423422
cache.array:
424-
adapter: cache.adapter.array
423+
adapter: cache.adapter.filesystem
425424
426425
427426
services:
@@ -446,7 +445,7 @@ case the value needs to be recalculated.
446445
<framework:pool name="my_cache_pool" adapter="cache.adapter.psr6" provider="app.my_cache_chain_adapter"/>
447446
<framework:pool name="cache.my_redis" adapter="cache.adapter.redis" provider="redis://user:[email protected]"/>
448447
<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"/>
450449
</framework:cache>
451450
</framework:config>
452451
@@ -480,7 +479,7 @@ case the value needs to be recalculated.
480479
'adapter' => 'cache.adapter.apcu',
481480
],
482481
'cache.array' => [
483-
'adapter' => 'cache.adapter.array',
482+
'adapter' => 'cache.adapter.filesystem',
484483
],
485484
],
486485
],

0 commit comments

Comments
 (0)