calvinlam/laravel-multiple-cache-driver is a Laravel package for cache data to redis and database.
It currently has 0 GitHub stars and 1 downloads on Packagist.
Install it with composer require calvinlam/laravel-multiple-cache-driver.
Discover more Laravel packages by calvinlam
or browse all Laravel packages to compare alternatives.
Last updated
Cache your data to Redis and Database. Get your data from Redis unless its empty.
composer require
CacheServiceProvider to laravel providers in config/app.php.multiple-driver in config/cache.php like'stores' => [
'redis' =>[
'driver' => 'multiple-driver',
...
],
],