Laravel Version
11.35.1
PHP Version
8.2
Database Driver & Version
Redis
Description
Cache::tags('tag_name')->flush();
returns true but the cache does not flush actually.
but Cache::flush(); works correctly.
- php 8.2
- laravel 11.35.1
- phpredis library
Steps To Reproduce
Cache::tags('mytag')->put('name', 'Amir', 120);
Cache::tags('mytag')->get('name');
Cache::tags('mytag')->flush();
Cache::tags('mytag')->get('name');
And after flush you can still get the name!