Skip to content

Removed the cache.adapter.array mention in 3.4 docs #12310

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions cache.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ adapter (template) they use by using the ``app`` and ``system`` key like:
The Cache component comes with a series of adapters already created:

* :doc:`cache.adapter.apcu </components/cache/adapters/apcu_adapter>`
* :doc:`cache.adapter.array </components/cache/adapters/array_cache_adapter>`
* :doc:`cache.adapter.doctrine </components/cache/adapters/doctrine_adapter>`
* :doc:`cache.adapter.filesystem </components/cache/adapters/filesystem_adapter>`
* :doc:`cache.adapter.memcached </components/cache/adapters/memcached_adapter>`
Expand Down Expand Up @@ -190,7 +189,7 @@ You can also create more customized pools. All you need is an adapter:
default_memcached_provider: 'memcached://localhost'
pools:
my_cache_pool:
adapter: cache.adapter.array
adapter: cache.adapter.filesystem
cache.acme:
adapter: cache.adapter.memcached
cache.foobar:
Expand All @@ -209,7 +208,7 @@ You can also create more customized pools. All you need is an adapter:

<framework:config>
<framework:cache default_memcached_provider="memcached://localhost">
<framework:pool name="my_cache_pool" adapter="cache.adapter.array"/>
<framework:pool name="my_cache_pool" adapter="cache.adapter.filesystem"/>
<framework:pool name="cache.acme" adapter="cache.adapter.memcached"/>
<framework:pool name="cache.foobar" adapter="cache.adapter.memcached" provider="memcached://user:password@example.com"/>
</framework:cache>
Expand All @@ -224,7 +223,7 @@ You can also create more customized pools. All you need is an adapter:
'default_memcached_provider' => 'memcached://localhost',
'pools' => [
'my_cache_pool' => [
'adapter' => 'cache.adapter.array',
'adapter' => 'cache.adapter.filesystem',
],
'cache.acme' => [
'adapter' => 'cache.adapter.memcached',
Expand Down Expand Up @@ -421,7 +420,7 @@ case the value needs to be recalculated.
cache.apcu:
adapter: cache.adapter.apcu
cache.array:
adapter: cache.adapter.array
adapter: cache.adapter.filesystem


services:
Expand All @@ -446,7 +445,7 @@ case the value needs to be recalculated.
<framework:pool name="my_cache_pool" adapter="cache.adapter.psr6" provider="app.my_cache_chain_adapter"/>
<framework:pool name="cache.my_redis" adapter="cache.adapter.redis" provider="redis://user:password@example.com"/>
<framework:pool name="cache.apcu" adapter="cache.adapter.apcu"/>
<framework:pool name="cache.array" adapter="cache.adapter.array"/>
<framework:pool name="cache.array" adapter="cache.adapter.filesystem"/>
</framework:cache>
</framework:config>

Expand Down Expand Up @@ -480,7 +479,7 @@ case the value needs to be recalculated.
'adapter' => 'cache.adapter.apcu',
],
'cache.array' => [
'adapter' => 'cache.adapter.array',
'adapter' => 'cache.adapter.filesystem',
],
],
],
Expand Down