rackbeat/php-throttler

Throttle PHP function calls and iteration runs by X executions per second.

0.9.2 2020-01-27 10:45 UTC

This package is auto-updated.

Last update: 2024-04-27 20:39:44 UTC


README

Rackbeat throttler
Throttle PHP actions to only run a set amount of times within a given timeframe.
Especially useful to avoid rate limiting, high CPU usage or DOS'ing your own services (database etc.)

Build Status Coverage Total Downloads Latest Stable Version License

Installation

You just require using composer and you're good to go!

composer require rackbeat/php-throttler

Usage

Basic example

use Rackbeat\Throttler\Throttler;

Throttler::make( range(1,100) )->allow(10)->every(1)->run( function($value, $key) {
    // do something with $value
} );

Requirements

  • PHP >= 7.3