marcoguidara/quick-laravel-responsecache

Grant response cache functionality to app models with minimal configuration.

v0.2.3 2021-05-19 13:19 UTC

This package is auto-updated.

Last update: 2024-04-19 19:54:14 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package is still WIP and sperimental.

Installation

You can install the package via composer:

composer require marcoguidara/quick-laravel-responsecache

You can publish the config file with:

php artisan vendor:publish --provider="MarcoGuidara\QuickResponseCache\QuickResponseCacheServiceProvider"

This is the contents of the published config file:

return [
    /*
     * Determine if the response cache should be enabled.
     */
    'enabled' => env('QUICK_RESPONSE_CACHE_ENABLED', true),

    /*
     * Default number of seconds responses must be cached.
     */
    'cache_lifetime_in_seconds' => env('QUICK_RESPONSE_CACHE_LIFETIME', 60 * 60 * 24 * 7),
];

Usage

Clearing cache

Manullay

QuickResponseCache::clear();

Using command

php artisan responsecache:clear
WIP

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.