Skip to content

Commit 0a300ed

Browse files
committed
Merge branch '6.4' into 7.2
* 6.4: Make tag aware config examples consistent
2 parents 99fce48 + 87e350d commit 0a300ed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cache.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,7 @@ to enable this feature. This could be added by using the following configuration
590590
pools:
591591
my_cache_pool:
592592
adapter: cache.adapter.redis_tag_aware
593+
tags: true
593594
594595
.. code-block:: xml
595596
@@ -606,7 +607,7 @@ to enable this feature. This could be added by using the following configuration
606607
<framework:config>
607608
<framework:cache>
608609
<framework:pool name="my_cache_pool"
609-
adapter="cache.adapter.redis"
610+
adapter="cache.adapter.redis_tag_aware"
610611
tags="true"
611612
/>
612613
</framework:cache>
@@ -622,7 +623,7 @@ to enable this feature. This could be added by using the following configuration
622623
$framework->cache()
623624
->pool('my_cache_pool')
624625
->tags(true)
625-
->adapters(['cache.adapter.redis'])
626+
->adapters(['cache.adapter.redis_tag_aware'])
626627
;
627628
};
628629

0 commit comments

Comments
 (0)