Download the PHP package telkins/laravel-job-funneling-middleware without Composer

On this page you can find all versions of the php package telkins/laravel-job-funneling-middleware. 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-job-funneling-middleware

A job middleware to funnel jobs

Latest Version on Packagist Build Status Quality Score StyleCI Total Downloads

This package contains a job middleware that can funnel jobs in Laravel apps.

Special Credits

Permission was granted by Freek Van der Herten to copy Spatie's laravel-rate-limited-job-middleware, rename it, and maintain it on my own. As such, the vast bulk of this package is built on theirs. Thanks...! :-)

Installation

You can install the package via composer:

This package requires Redis to be set up in your Laravel app.

Usage

By default, the middleware will only allow 1 job to be executed at a time. Any jobs that are not allowed will be released for 5 seconds.

To apply the middleware just add the Telkins\JobFunnelingMiddleware\Funneled to the middlewares of your job.

Configuring attempts

When using rate limiting, including funneling, the number of attempts of your job may be hard to predict. Instead of using a fixed number of attempts, it's better to use time based attempts.

You can add this to your job class:

Customizing the behavior

You can customize all the behavior. Here's an example where the middleware allows a maximum of 3 jobs to be performed at a time. Jobs that are not allowed will be released for 90 seconds.

Customizing Redis

By default, the middleware will use the default Redis connection.

The default key that will be used in redis will be the name of the class that created the instance of the middleware. In most cases this will be name of the job in which the middleware is applied. If this is not what you expect, you can use the key method to customize it.

Here's an example where a custom connection and custom key is used.

Conditionally applying the middleware

If you want to conditionally apply the middleware you can use the enabled method. It accepts a boolean that determines if the middleware should funnel your job or not.

You can also pass a Closure to enabled. If it evaluates to a truthy value the middleware will be enabled.

Here's a silly example where the funneling is only activated in January.

Available methods.

These methods are available to be called on the middleware. Their names should be self-explanatory.

Testing

Changelog

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

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

This code is heavily based on the funneling example found in the Laravel docs.

License

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


All versions of laravel-job-funneling-middleware with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3|^8.0
illuminate/redis Version ^6.0|^7.0|^8.0|^9.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 telkins/laravel-job-funneling-middleware contains the following files

Loading the files please wait ....