We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Symfony version(s) affected: 3.4.9
Description Cache don't invalidate tags. In version 3.4.8 everything working fine.
How to reproduce
$cache = new TagAwareAdapter( new FilesystemAdapter(), new FilesystemAdapter() ); $review = $cache->getItem('reviews-1'); $review->set('test'); $review->tag(['reviews']); $cache->save($review); dump($cache->getItem('reviews-1')->isHit()); //true - correct $cache->invalidateTags(['reviews']); dump($cache->getItem('reviews-1')->isHit()); //false - correct $cache = new TagAwareAdapter( new FilesystemAdapter(), new FilesystemAdapter() ); $review = $cache->getItem('reviews-1'); dump($cache->getItem('reviews-1')->isHit()); //true - incorrect / why ?
Probably error in GH-27007
The text was updated successfully, but these errors were encountered:
This looks like a duplicate of #27147 which was fixed in #27158 and will be part of Symfony 3.4.10.
Sorry, something went wrong.
No branches or pull requests
Symfony version(s) affected: 3.4.9
Description
Cache don't invalidate tags. In version 3.4.8 everything working fine.
How to reproduce
Probably error in GH-27007
The text was updated successfully, but these errors were encountered: