Download the PHP package theriddleofenigma/laravel-rache without Composer
On this page you can find all versions of the php package theriddleofenigma/laravel-rache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download theriddleofenigma/laravel-rache
More information about theriddleofenigma/laravel-rache
Files in theriddleofenigma/laravel-rache
Package laravel-rache
Short Description A super cool package for caching the laravel response dynamically.
License MIT
Informations about the package laravel-rache
♥ Made with <love/> And I love <code/>
Laravel Rache
A super cool package for caching the laravel response dynamically.
Installation
Composer Install
You can install the package via composer:
Service provider and Alias [only for lumen]
Add the service provider and alias in the bootstrap/app.php.
Note
For laravel, the service provider and aliases will be loaded automatically by the Package Discovery.
Config
Publish the config file by running the following artisan command. It will publish the rache config file under config/rache.php.
Middleware
You can either declare the default middleware, or you extend it by creating your own middleware for customisation.
Setting the Driver
Make sure to set the rache driver in the .env file with the corresponding driver name which you want to use.
Note
Since rache uses Laravel Cache Tags behind the scenes it contains the same limitations as Laravel Cache tags. Cache tags
aren't supported when using the file
, dynamodb
, or database
cache drivers.
Rache Tags
Rache tags acts as label for settings up the cache against some data. Auth
, Request
, and Pagination
tags are added
by default. You can find them in the rache.php config file under tags key.
You can create a Rache tag using the following artisan commands.
or
Once you have created the rache tag successfully, then you can configure the dataset in the newly created file
under getTagDetails()
method. The array data returned from the getTagDetails()
method should contain the key-value
pairs of unique dataset, and it will bring the cache dynamic on using with the rache middleware.
Let's add a Rache Tag for search,
Run php artisan make:rache-tag Search
in the project base directory.
Then add the unique constraints for the search tag under getTagDetails()
,
After that you should define the newly created tag in the rache.php config file as follows,
Note
You can add any number of tags based on the no. of unique constraints they for the route by which the cache will be considered as new.
In Route
Use the middleware along with tags. You can enter the ttl as a tag for settings a different lifetime than the lifetime configured in the rache.php config file. You can pass the ttl in any position along with the other tags.
Note
- The lifetime ttl entered are in seconds here.
- You must have declared the route name in order to rache middleware against a route.
- You can use the middleware without tags like
->middleware('rache')
. It will cache the response without considering any tag data. It will be useful if a route response won't vary for anyone.
Example usage
Flush all the cached responses
By calling the flushAll, you can clear all the cached response in the application.
Flush the tags with route and data
You can flush the cache by using Rache::flushTag({tag-name}, {options:[route, data]})
. We can find some real-time
examples for flushing the tags.
Case 1
Let's say you want to clear all the cache based on the auth tag,
If the route name is not mentioned, then the cache for all the routes having the auth tag will get cleared.
Case 2
If you want to clear for the current authenticated user then,
The Rache::getTagData()
will render the data as same as it's get rendered for creating the cache.
Case 3
In case you want to clear the data for other users,
If the route name is not mentioned, then the cache for all the routes having the auth tag will get cleared. Here, the auth tag for userId 2 will get cleared without touching the cache of other userId's.
Note
You can flush any type of tag along with route name or data based on your need. Ex: On creating new record or delete event or on custom event or an API trigger. You can use it anywhere, whenever a tag has been flushed it will clear all the corresponding cache.
Credits
- Kumaravel
- All Contributors
License
Copyright © Kumaravel
Laravel Rache is open-sourced software licensed under the MIT license.