From 80eb561c2e4245739bb0fde0b7685728fdd832ae Mon Sep 17 00:00:00 2001 From: Michael Babker Date: Tue, 18 Feb 2025 09:39:54 -0600 Subject: [PATCH] Make tag aware config examples consistent --- cache.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cache.rst b/cache.rst index 0072e9cfd52..2dec1e6a758 100644 --- a/cache.rst +++ b/cache.rst @@ -603,6 +603,7 @@ to enable this feature. This could be added by using the following configuration pools: my_cache_pool: adapter: cache.adapter.redis_tag_aware + tags: true .. code-block:: xml @@ -619,7 +620,7 @@ to enable this feature. This could be added by using the following configuration @@ -635,7 +636,7 @@ to enable this feature. This could be added by using the following configuration $framework->cache() ->pool('my_cache_pool') ->tags(true) - ->adapters(['cache.adapter.redis']) + ->adapters(['cache.adapter.redis_tag_aware']) ; };