partechgss/laravel-multi-cache is a Laravel package for combine multiple caches in laravel 6..
It currently has 0 GitHub stars and 664 downloads on Packagist (latest version 2.0.0).
Install it with composer require partechgss/laravel-multi-cache.
Discover more Laravel packages by partechgss
or browse all Laravel packages to compare alternatives.
Last updated
Allows you to use multiple Laravel cache stores as one. Retrieves items from the first cache they are found in.
An example use is to have an array cache and Redis cache. Fetch items from the array cache first (faster), and from Redis if the key was not found. The value will be stored in the array cache if it was found in Redis.
composer require partechgss/laravel-multi-cache
Add this to your config/app.php providers array:
Partechgss\LaravelMultiCache\MultiStoreServiceProvider::class
Add the multi store to your config/cache.php stores array:
'stores' => [
'array' => [
'driver' => 'array',
],
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => null,
],
'redis' => [
'driver' => 'redis',
'connection' => 'redis-cache',
],
'multi' => [
'driver' => 'multi',
'stores' => [
'array',
'redis',
'database'
]
]
],
Set your CACHE_DRIVER in .env:
CACHE_DRIVER=multi
The cache implements the standard cache interface, so you use all the normal get() and put() methods.
get($key)Returns the value from the first store $key is found in (in the order defined in stores). The value will be saved in any higher 'stores'.
e.g. If the value is not found it array, but is in redis, the value from redis will be returned and put in array, but it will not be put in database.
put($key, $value, $minutes)Stores an item in all of the stores.
All of the other methods (increment(), forget(), flush(), etc.) perform the operation on all of the stores.