Download the PHP package pixxet/laravel-partialcache without Composer
On this page you can find all versions of the php package pixxet/laravel-partialcache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pixxet/laravel-partialcache
More information about pixxet/laravel-partialcache
Files in pixxet/laravel-partialcache
Package laravel-partialcache
Short Description Laravel Cache Partial Blade Directive
License MIT
Homepage https://github.com/pixxet/laravel-partialcache
Informations about the package laravel-partialcache
Laravel Cache Partial Blade Directive
This package provides a Blade directive for Laravel >=6.0 to cache rendered partials in Laravel.
Install
You can install the package via Composer:
In Laravel 6.0 the package's service provider and facade will be registered automatically. In older versions of Laravel, you must register them manually:
The facade is optional, but the rest of this guide assumes you're using it.
Optionally publish the config files:
Usage
The package registers a blade directive, @cache
. The cache directive accepts the same arguments as @include
, plus optional parameters for the amount of minutes a view should be cached for, a key unique to the rendered view, and a cache tag for the rendered view. If no minutes are provided, the view will be remembered until you manually remove it from the cache.
Note that this caches the rendered html, not the rendered php like blade's default view caching.
Clearing The PartialCache
You can forget a partial cache entry with PartialCache::forget($view, $key)
.
If you want to flush all entries, you'll need to clear your entire cache.
Configuration
Configuration isn't necessary, but there are three options specified in the config file:
partialcache.enabled
: Fully enable or disable the cache. Defaults totrue
.partialcache.directive
: The name of the blade directive to register. Defaults tocache
.partialcache.key
: The base key that used for cache entries. Defaults topartialcache
.partialcache.default_duration
: The default cache duration in minutes, setnull
to remember forever. Defaults tonull
.
Change log
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Postcardware
You're free to use this package.
Credits
- Spatie
- Sebastian De Deyne
- All Contributors
License
The MIT License (MIT). Please see License File for more information.