With this package you can easily cache your database query. This packege will make faster your application.
You can install the package via composer:
composer require nanopkg/laravel-orm-cache
Use OrmCache and set and orm cache key in your model
use Nanopkg\OrmCache\Traits\OrmCache;
class Model
{
use OrmCache; // import this class
protected static $orm_cache_key = 'your key name here';
}
Get cache data by DESC formate
Model::cacheData();
Get cache data by ASC formate
Model::cacheDataASC();
Get cache table first Data
Model::cacheDataFirst();
Get cache table Last Data
Model::cacheDataLast();
Get cache table query
Model::cacheDataQuery();
Forget cache
Model::forgetCache();
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.