tiendanube / throttler
A PHP package for throttling and rate limiting
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 2 225 340
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 10
Forks: 3
Open Issues: 1
Requires
- php: ~7.0
Requires (Dev)
- php-coveralls/php-coveralls: ~2.1
- phpunit/phpunit: ~6.5
This package is auto-updated.
Last update: 2024-08-02 18:54:42 UTC
README
This library has been deprecated because the application's Rate Limit was changed to use a Lua Script. The entire process is documented in the Pitch Document, and the changes can be verified in the following Pull Requests:
- [ECOSYS-629] Rate Limiting with Lua script #28322
- [ECOSYS-630] Rate Limit Script Rollout Strategy #28573
- [ECOSYS-1037] Remove Legacy Rate Limit #29267
- Fix: Remove throttler depencency from project #29336
For that reason, this library will be archived.
Throttler
This is yet another Throttling library for PHP applications, that provides a throttling interface and a flexible API for implementing custom throttling algorithms (aka providers) and storage strategies.
Installation
$ composer require tiendanube/throttler
Basic Usage
<?php $storage = new TiendaNube\Throttler\Storage\InMemory(); $provider = new TiendaNube\Throttler\Provider\LeakyBucket(); $throttler = new \TiendaNube\Throttler\Throttler($provider,$storage); if (!$throttler->throttle('client:1')) { // allow } else { // deny }
Providers
Currently, the only available provider is the Leaky Bucket algorithm.
If you need a different algorithm for throttling, just create your own class and implement the ProviderInterface.
Storage Strategies
Currently, the only available storage strategy is the InMemory adapter, that stores the information in memory, that is useful for CLI applications.
If you want to implement a custom storage (for example, a Redis database), just create your own class and implement the StorageInterface.
Development and Tests
Feel free to contribute with bug fixing, new providers and storage strategies.
To start contributing, just make a fork of this repo, create a branch which the name explains what you are doing, code your solution and send us a Pull Request.
Development Installation
$ composer install --dev
Running the Tests
$ ./vendor/bin/phpunit
Documentation
Coming soon.
License
This library is licensed under the MIT license.