-
Notifications
You must be signed in to change notification settings - Fork 71
Description
Note that since Laravel 5.7
php artisan cache:clear
will not clear the default REDIS connection that lada-cache is configured to use (and doesn't appear to have any way to change)
This means that currently lada-cache is using the 'database' configuration of REDIS in Laravel (called 'default') (for things like sessions) and not the 'cache' configuration (called 'cache') .
The only work around I can see at the moment, is to change the redis cache configuration in Laravel (/app/config/cache.php) to have it's connection set to the 'default' and not 'cache'.
This of course undoes the reason it was changed in the first place, doing php artisan cache:clear
will also delete anything placed in the REDIS 'database' configuration (i.e. sessions and the like)