Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/symfony/rate-limiter

Provides a Token Bucket implementation to rate limit input and output in your application
https://github.com/symfony/rate-limiter

component limiter php rate-limiter symfony symfony-component

Last synced: about 1 month ago
JSON representation

Provides a Token Bucket implementation to rate limit input and output in your application

Awesome Lists containing this project

README

        

Rate Limiter Component
======================

The Rate Limiter component provides a Token Bucket implementation to
rate limit input and output in your application.

Getting Started
---------------

```bash
composer require symfony/rate-limiter
```

```php
use Symfony\Component\RateLimiter\Storage\InMemoryStorage;
use Symfony\Component\RateLimiter\RateLimiterFactory;

$factory = new RateLimiterFactory([
'id' => 'login',
'policy' => 'token_bucket',
'limit' => 10,
'rate' => ['interval' => '15 minutes'],
], new InMemoryStorage());

$limiter = $factory->create();

// blocks until 1 token is free to use for this process
$limiter->reserve(1)->wait();
// ... execute the code

// only claims 1 token if it's free at this moment (useful if you plan to skip this process)
if ($limiter->consume(1)->isAccepted()) {
// ... execute the code
}
```

Resources
---------

* [Contributing](https://symfony.com/doc/current/contributing/index.html)
* [Report issues](https://github.com/symfony/symfony/issues) and
[send Pull Requests](https://github.com/symfony/symfony/pulls)
in the [main Symfony repository](https://github.com/symfony/symfony)