wpjscc/reactphp-limiter
Composer 安装命令:
composer require wpjscc/reactphp-limiter
包简介
A generic rate limiter for the web and reactphp. Useful for API clients, web crawling, or other tasks that need to be throttled
README 文档
README
Provides a generic rate limiter for the web and node.js. Useful for API clients, web crawling, or other tasks that need to be throttled. Two classes are exposed, RateLimiter and TokenBucket. TokenBucket provides a lower level interface to rate limiting with a configurable burst rate and drip rate. RateLimiter sits on top of the token bucket and adds a restriction on the maximum number of tokens that can be removed each interval to comply with common API restrictions such as "150 requests per hour maximum".
Installation
composer require wpjscc/reactphp-limiter
Usage
A simple example allowing 150 requests per hour:
use Wpjscc\React\Limiter\RateLimiter; use function React\Async\async; use function React\Async\await; // Allow 150 requests per hour (the Twitter search limit). Also understands // 'second', 'minute', 'day', or a number of milliseconds $limiter = new RateLimiter(150, "hour"); async (function sendRequest() { // This call will throw if we request more than the maximum number of requests // that were set in the constructor // remainingRequests tells us how many additional requests could be sent // right this moment $remainingRequests = await($limiter->removeTokens(1)); callMyRequestSendingFunction(...); })();
Another example allowing one message to be sent every 250ms:
use Wpjscc\React\Limiter\RateLimiter; use function React\Async\async; use function React\Async\await; $limiter = new RateLimiter(1, 250); async(function sendMessage() { $remainingMessages = await($limiter->removeTokens(1)); callMyMessageSendingFunction(...); })();
The default behaviour is to wait for the duration of the rate limiting that's
currently in effect before the promise is resolved, but if you pass in
"fireImmediately": true, the promise will be resolved immediately with
remainingRequests set to -1:
use Wpjscc\React\Limiter\RateLimiter; use function React\Async\async; use function React\Async\await; $limiter = new RateLimiter( 150, "hour", true ); async(function requestHandler(request, response) { // Immediately send 429 header to client when rate limiting is in effect $remainingRequests = await($limiter->removeTokens(1)); if ($remainingRequests < 0) { $response.writeHead(429, {'Content-Type': 'text/plain;charset=UTF-8'}); $response.end('429 Too Many Requests - your IP is being rate limited'); } else { callMyMessageSendingFunction(...); } })();
A synchronous method, tryRemoveTokens(), is available in both RateLimiter and TokenBucket. This will return immediately with a boolean value indicating if the token removal was successful.
use Wpjscc\React\Limiter\RateLimiter; use function React\Async\async; use function React\Async\await; $limiter = new RateLimiter(10,"second"); if ($limiter->tryRemoveTokens(5)) echo('Tokens removed'); else echo('No tokens removed');
To get the number of remaining tokens outside the removeTokens promise,
simply use the getTokensRemaining method.
use Wpjscc\React\Limiter\RateLimiter; use function React\Async\async; use function React\Async\await; $limiter = new RateLimiter(1, 250); // Prints 1 since we did not remove a token and our number of tokens per // interval is 1 echo($limiter->getTokensRemaining());
Using the token bucket directly to throttle at the byte level:
use Wpjscc\React\Limiter\TokenBucket; use function React\Async\async; use function React\Async\await; define("BURST_RATE", 1024 * 1024 * 150); // 150KB/sec burst rate define("FILL_RATE", 1024 * 1024 * 50); // 50KB/sec sustained rate // We could also pass a parent token bucket in to create a hierarchical token // bucket // bucketSize, tokensPerInterval, interval const bucket = new TokenBucket( BURST_RATE, FILL_RATE, "second" ); async(function handleData($myData) use ($bucket) { await($bucket->removeTokens(strlen($myData)); sendMyData($myData); })();
Additional Notes
Both the token bucket and rate limiter should be used with a message queue or some way of preventing multiple simultaneous calls to removeTokens(). Otherwise, earlier messages may get held up for long periods of time if more recent messages are continually draining the token bucket. This can lead to out of order messages or the appearance of "lost" messages under heavy load.
License
MIT License
wpjscc/reactphp-limiter 适用场景与选型建议
wpjscc/reactphp-limiter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 25 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 08 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 wpjscc/reactphp-limiter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 wpjscc/reactphp-limiter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 25
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 15
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-08-25