diff --git a/cache.rst b/cache.rst index 4044b70f8ef..49373da61be 100644 --- a/cache.rst +++ b/cache.rst @@ -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 ` -* :doc:`cache.adapter.array ` * :doc:`cache.adapter.doctrine ` * :doc:`cache.adapter.filesystem ` * :doc:`cache.adapter.memcached ` @@ -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: @@ -209,7 +208,7 @@ You can also create more customized pools. All you need is an adapter: - + @@ -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', @@ -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: @@ -446,7 +445,7 @@ case the value needs to be recalculated. - + @@ -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', ], ], ],