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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-rache

♥ Made with <love/> And I love <code/>

Total Downloads

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

  1. The lifetime ttl entered are in seconds here.
  2. You must have declared the route name in order to rache middleware against a route.
  3. 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

License

Copyright © Kumaravel

Laravel Rache is open-sourced software licensed under the MIT license.


All versions of laravel-rache with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3|^8.0
illuminate/support Version ^7.0|^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package theriddleofenigma/laravel-rache contains the following files

Loading the files please wait ....