mintbridge/laravel-cache-filter

Laravel route filter for caching responses
22 2
Install
composer require mintbridge/laravel-cache-filter
Latest Version:1.0.0
PHP:>=5.3.0
License:MIT
Last Updated:Jun 15, 2014
Links: GitHub  ·  Packagist
Maintainer: mintbridge

Laravel Cache Filter

Often you have responses that don't change very often, this package lets you store these responses in the cache and then return them automatically using a filter the next time they are requested.

Installation

Begin by installing this package through Composer.

{
    "require": {
		"mintbridge/laravel-cache-filter": "1.0.x"
	}
}

Then add the service provider to you app config.


// app/config/app.php

'providers' => [
    '...',
    'MintBridge\LaravelCacheFilter\LaravelCacheFilterServiceProvider'
];

Usage

The package provide 2 filters, these can be used with Laravels before and after route filters:

Route::get('some-route', array(
	'before' => 'cache.response.fetch',
	'after' => 'cache.response.store',
	...
));

The fetch filter will check to see if the response has been cached and if so return it. The store filter takes the generated response and adds it to the cache ready for the next time it is requested.

Related Packages

themonkeys/blade-cache-filter

A simple caching filter that caches Laravel's Response objects

965 5
ytake/laravel-smarty

Smarty template engine for Laravel and Lumen

409,838 85
maartenstaa/laravel-41-route-caching

This package allows you to cache your routes definitions, thereby speeding up ea...

382,757 25
spatie/laravel-responsecache

Speed up a Laravel application by caching the entire response

9,164,972 2,809
barryvdh/laravel-httpcache

HttpCache for Laravel

406,963 502