国产+高潮+在线,国产 av 仑乱内谢,www国产亚洲精品久久,51国产偷自视频区视频,成人午夜精品网站在线观看

應(yīng)用接口服務(wù)限流工具,簡單實現(xiàn)令牌桶

v1.0.1 版本
2022-04-06 版本更新時間
817 安裝
16 star

簡介

限流類

  • 全局中間件,整個應(yīng)用接口限流,
  • 路由中間件,某些功能接口請求速率限制

緩存依據(jù)的是Support\Cache的 instance(), 其他類只要是實現(xiàn) get($key, $default = null), set($key, $value, $ttl = null), delete($key) funtion就行.

項目地址:https://github.com/nsp-team/webman-throttler

安裝

composer require nsp-team/webman-throttler

使用

默認(rèn) 開啟全局中間件限流

return [
    '' => [
        \NspTeam\WebmanThrottler\Middleware\ThrottlerMiddleware::class,
    ]
];

你也可以啟用路由中間件,控制接口請求速率限制

例如:

Route::group('/sys/user', static function () {
    Route::post('/test', [User::class, 'test']);
})->middleware([
    \NspTeam\WebmanThrottler\Middleware\ThrottlerMiddleware::class
]);

效果圖(可選)

截圖

截圖

贊助商