2017 © Pedro Peláez
 

library tfilecache

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

image

unikent/tfilecache

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

  • Saturday, November 12, 2016
  • by cs462-unikent
  • Repository
  • 7 Watchers
  • 18 Stars
  • 3,656 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 6 Forks
  • 2 Open issues
  • 12 Versions
  • 5 % Grown

The README.md

Laravel Taggable File Cache

This package provides a custom file cache driver that supports Cache Tags for Laravel 5.1 or Lumen 5.2+., (*1)

Usage

This product is publicly available under the terms of the MIT license included in this repository. Please refer to the current brand guidelines for use of the existing brand., (*2)

Installation and Requirements

First, you'll need to require the package with Composer:, (*3)

composer require unikent/tfilecache

Then, update config/app.php by adding an entry for the service provider., (*4)

'providers' => [
    // ...
    Unikent\Cache\TaggableFileCacheServiceProvider::class
];

Finally, add the necessary config to config\cache.php., (*5)

'default' => env('CACHE_DRIVER', 'tfile'),

'stores' => [

        'tfile' => [
            'driver' => 'tfile',
            'path'   => storage_path('framework/cache')
        ],
        // ...
],

Optional Configuration

There are some optional config options available in the store definition above:, (*6)

queue : accepts the string name of a queue to use for tag clean up, will use the default queue if omitted. 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., (*7)

Tag Cleanup

To offset the work of cleaning up cache entries when a tag is flushed this task is added as a Job and queued using laravel's inbuilt queueing. Note: laravel's default queue driver is sync which will result in the job being executed synchronously, it is strongly advised you use an alternate queue driver with appropriate workers to offset this work if you wish to use this cache driver., (*8)

The Versions

12/11 2016

dev-laravel5.3

dev-laravel5.3

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

  Sources   Download

The Development Requires

by gjmh-unikent

12/11 2016

2.0.2

2.0.2.0

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

  Sources   Download

The Development Requires

by gjmh-unikent

12/11 2016

dev-master

9999999-dev

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

  Sources   Download

The Development Requires

by gjmh-unikent

12/11 2016

1.0.8

1.0.8.0

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

  Sources   Download

The Development Requires

by gjmh-unikent

23/10 2016

2.0.1

2.0.1.0

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

  Sources   Download

The Development Requires

by gjmh-unikent

03/05 2016

1.0.7

1.0.7.0

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

  Sources   Download

The Development Requires

by gjmh-unikent

29/04 2016

1.0.6

1.0.6.0

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

  Sources   Download

The Development Requires

by gjmh-unikent

27/04 2016

1.0.5

1.0.5.0

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

  Sources   Download

The Development Requires

by gjmh-unikent

27/04 2016

dev-cs462-unikent-patch-1

dev-cs462-unikent-patch-1

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

  Sources   Download

The Development Requires

by gjmh-unikent

27/04 2016

1.0.4

1.0.4.0

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

  Sources   Download

The Development Requires

by gjmh-unikent

08/03 2016

1.0.2

1.0.2.0

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

  Sources   Download

The Development Requires

by gjmh-unikent

08/03 2016

1.0.1

1.0.1.0

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

  Sources   Download

The Development Requires

by gjmh-unikent