microweber-packages/laravel-tagged-file-cache

Taggable File Cache driver for Laravel. Allows the use of Cache tags with a file cache.

0.1.4 2020-09-23 12:40 UTC

This package is auto-updated.

Last update: 2024-04-23 20:17:09 UTC


README

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.