microweber-packages/laravel-tagged-file-cache
| Install | |
|---|---|
composer require microweber-packages/laravel-tagged-file-cache |
|
| Latest Version: | 0.1.4 |
| License: | MIT |
| Last Updated: | Sep 23, 2020 |
| Links: | GitHub · Packagist |
Laravel Taggable File Cache 
https://travis-ci.org/microweber-packages/laravel-tagged-file-cache
This package provides a custom file cache driver that supports Cache Tags for Laravel 6.x
Usage
This product is publicly available under the terms of the MIT license included in this repository.
Installation and Requirements
First, you'll need to require the package with Composer:
composer require microweber-packages/laravel-tagged-file-cache
Then, update config/app.php by adding an entry for the service provider.
'providers' => [
// ...
MicroweberPackages\Cache\TaggableFileCacheServiceProvider::class
];
Finally, add the necessary config to config\cache.php.
'default' => env('CACHE_DRIVER', 'file'),
'stores' => [
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache')
],
// ...
],
You are ready to use tag file caching..
$minutes = 1111 * 4;
$tags = ['people', 'cars', 'shamans'];
Cache::tags($tags)->put('name', 'John', $minutes);
$name = Cache::tags($tags)->get('name');
var_dump($name); // Output: John
// If you want to delete tags
Cache::tags($tags)->flush();
Optional Configuration
There are some optional config options available in the store definition above:
separator : defines the separator character or sequence to be used internally, this should be chosen to never collide with a key value. defaults to --- if omitted.
Related Packages
laravel-paypalpayment is simple package help you process direct credit card paym...
Powerful PHP database abstraction layer (DBAL) with many features for database s...