Last Updated | | Ratings | | Unique User Downloads | | Download Rankings |
2025-02-20 (1 month ago)  | | Not yet rated by the users | | Total: Not yet counted | | Not yet ranked |
|
Description | | Author |
This package can limit the handling of requests to a given rate.
It provides a class that can handle requests to execute tasks started from the command line and count the number of requests received in a given time.
The class can handle POSIX USR1 signals to trigger the handling of requests. Innovation Award
 February 2025
Number 4 |
PHP is a flexible language that can execute scripts from Web servers or the command line console to execute many types of tasks.
One way to execute PHP scripts faster is to start a script and make it wait for the data it needs to process to execute a task.
This way, it will save the time necessary to start the script.
This package provides a class that can wait for a signal to be sent to it to process the next task it needs to execute.
Manuel Lemos |
| |
 |
|
Innovation award
 Nominee: 7x
Winner: 1x |
|
Example
<?php
include 'ReactiveRateLimiter.php';
// Allow 5 requests every 5 seconds
$rateLimiter = new ReactiveRateLimiter(5, 5.0);
// Simulate periodic requests
while (true) {
$rateLimiter->sendRequest();
usleep(200000); // 0.2 seconds between requests
}
?>
|
Details
Reactive and Asynchronous Rate Limiter in PHP
A reactive and asynchronous rate limiter in PHP, designed to handle high-frequency requests efficiently, this implementation leverages pcntl signals to provide non-blocking and lock-free request handling. It is a lightweight solution ideal for applications requiring precise and dynamic control over incoming request rates.
Features
-
Reactive and Asynchronous:
- Utilizes PHP's `pcntl` library to process incoming requests reactively.
- Ensures non-blocking behavior, making it suitable for high-concurrency environments.
-
No Locking Required:
- Eliminates the need for semaphores, file locks, or databases.
- Tracks requests entirely in memory for lightweight operation.
-
Dynamic Rate Management:
- Configurable maximum requests per time window.
- Handles blocked requests reactively with customizable timeout durations.
Code Overview
Core Class
The implementation includes the ReactiveRateLimiter
class, which:
1. Dynamically tracks requests in memory.
2. Reacts to incoming signals using pcntl_signal
for efficient concurrency.
3. Implements rate-limiting logic to allow or block requests based on defined thresholds.
Example Usage
<?php
include 'ReactiveRateLimiter.php';
// Allow 5 requests every 5 seconds
$rateLimiter = new ReactiveRateLimiter(5, 5.0);
// Simulate periodic requests
while (true) {
$rateLimiter->sendRequest();
usleep(200000); // 0.2 seconds between requests
}
?>
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.