symfony / symfony-docs

The Symfony documentation
https://symfony.com/doc
Other
2.14k stars 5.1k forks source link

Fix redis adapter config to work with tags #19996

Open Huluti opened 2 weeks ago

Huluti commented 2 weeks ago

I found that to work with redis and tags using this config was not working (tag not set and invalidation not working):

 'adapter' => 'cache.adapter.redis',
 'tags' => true,

While with this one all was working fine:

adapter' => 'cache.adapter.redis_tag_aware',

Up to you if you think that it makes sense :)