pixxet / laravel-partialcache
Laravel Cache Partial Blade Directive
Installs: 5 351
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: >=7.1
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2024-11-09 05:57:14 UTC
README
This package provides a Blade directive for Laravel >=6.0 to cache rendered partials in Laravel.
Install
You can install the package via Composer:
$ composer require pixxet/laravel-partialcache
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:
// config/app.php 'providers' => [ ... Pixxet\PartialCache\PartialCacheServiceProvider::class, ], 'aliases' => [ ... 'PartialCache' => Pixxet\PartialCache\PartialCacheFacade::class, ],
The facade is optional, but the rest of this guide assumes you're using it.
Optionally publish the config files:
$ php artisan vendor:publish --provider="Pixxet\PartialCache\PartialCacheServiceProvider"
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.
{{-- Simple example --}}
@cache('footer.section.partial')
{{-- With extra view data --}}
@cache('products.card', ['product' => $category->products->first()])
{{-- With an added key (cache entry will be partialcache.user.profile.{$user->id}) --}}
@cache('user.profile', null, $user->id)
{{-- For a certain time --}}
{{-- (cache will invalidate in 60 minutes in this example, set null to remember forever) --}}
@cache('homepage.news', null, null, 60)
{{-- If template exists --}}
{{-- Just like the usual includeIf directive add "If" to the cache (or your custom directive) to cache partial only if the template exists --}}
@cacheIf('footer.section.partial')
{{-- When boolean true --}}
{{-- Just like the usual includeWhen directive add "When" to the cache (or your custom directive) to cache partial depending on a given boolean condition --}}
@cacheWhen($isPrintable !== true, 'footer.section.partial')
Clearing The PartialCache
You can forget a partial cache entry with PartialCache::forget($view, $key)
.
PartialCache::forget('user.profile', $user->id);
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 me@omarsharkeyeh.me instead of using the issue tracker.
Postcardware
You're free to use this package.
Credits
License
The MIT License (MIT). Please see License File for more information.