valeryq/cacheable
Laravel Cacheable
Requirements
- PHP >= 5.5.9
- Laravel >= 5.1
Installation
Require this package with composer:
composer require valeryq/cacheable
Usage
You must implements the Cacheable contract into your class and you can use the CacheableTrait instead realized methods from contract.
For example (for repositories):
<?php namespace App\Repositories\Cacheable;
use App\Models\Product;
use Valeryq\Cacheable\Contracts\Cacheable;
use Valeryq\Cacheable\Traits\CacheableTrait;
class CacheableProductRepository implements Cacheable
{
use CacheableTrait;
/**
* Find product by id
*
* @param $id
*
* @return Product
* @throws ModelNotFoundException
*/
public function find($id)
{
return $this->cache()->remember('your_key', 60, function() {
return Product::findOrFail($id);
});
}
....
}
License
The Laravel Cacheable is open-sourced software licensed under the MIT license
Related Packages
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

