Skip to content

Commit 00e5f9a

Browse files
committed
fix cache file
1 parent 01f8e46 commit 00e5f9a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/components/cache.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ All you need to do now is to clear all tagged items:
4343
.. code-block:: php
4444
4545
$cache->invalidateTags(['firstTag']);
46+
4647
Pools clearing
4748
==============
4849

@@ -54,6 +55,7 @@ Cache Pools include methods to delete a cache item, some of them, or all of them
5455
.. code-block:: php
5556
5657
$isDeleted = $cache->deleteItem('user_'.$userId);
58+
5759
Use the ``Psr\\Cache\\CacheItemPoolInterface::deleteItems`` method to delete several cache items simultaneously - it returns true only if all the items have been deleted, even when any or some of them don't exist.
5860

5961
Configuration
@@ -68,6 +70,7 @@ These are the default settings:
6870
'cache_adapter' => 'mautic.cache.adapter.filesystem',
6971
'cache_prefix' => 'app',
7072
'cache_lifetime' => 86400
73+
7174
They can be overridden in ``local.php`` like this:
7275

7376
.. code-block:: php
@@ -84,6 +87,7 @@ Delivered adapters
8487
- ``mautic.cache.adapter.memcached``
8588

8689
.. code-block:: php
90+
8791
'memcached' => [
8892
'servers' => ['memcached://localhost'],
8993
'options' => [

0 commit comments

Comments
 (0)