Download the PHP package lx9912/think-throttle without Composer
On this page you can find all versions of the php package lx9912/think-throttle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download lx9912/think-throttle
More information about lx9912/think-throttle
Files in lx9912/think-throttle
Download lx9912/think-throttle
More information about lx9912/think-throttle
Files in lx9912/think-throttle
Vendor lx9912
Package think-throttle
Short Description throttle middleware for thinkphp6
License Apache-2.0
Package think-throttle
Short Description throttle middleware for thinkphp6
License Apache-2.0
Please rate this library. Is it a good library?
Informations about the package think-throttle
安装
安装后会自动为项目生成 conf/throttle.php
配置文件,默认配置不会限制访问频率。
开启
组件以中间件的方式进行工作,因此它的开启与其他中间件一样,例如在全局中间件中使用 app/middleware.php
:
配置说明
在 config/throttle.php
配置选项:
当配置项满足以下条件任何一个时,不会限制访问频率:
key
值为false
或null
;visit_rate
值为null
。
其中 key
用来设置缓存键的;而 visit_rate
用来设置访问频率,单位可以是秒,分,时,天,例如:1/s
, 10/m
, 98/h
, 100/d
, 也可以是 100/600
(600 秒内最多 100 次请求)。
灵活定制
示例一:针对用户个体做限制, key
的值可以设为函数,该函数返回新的缓存键值,例如:
实例二:也可以在回调函数里针对不同控制器和方法定制生成key,中间件会进行转换:
或者直接设置:
PS:此示例需要本中间件在路由中间件后启用,这样预设的替换功能才会生效。
示例三:允许在闭包内修改本次访问频率或临时更换限流策略:
更新日志
版本 1.1.x 的配置形式完全兼容版本 1.0.x 内容,可以无缝升级。
1.1.x 更新
- 添加漏桶限流算法, 令牌桶算法, 计数固定窗口, 滑动窗口共四种限流策略;
- 公共数据改为静态属性,节省内存分配;
- 重构中间件接口,便于扩展更多的限流算法;
- 默认策略使用计数固定窗口的策略;
- 时间取毫秒,某些限流算法需要;
- 只使用一个缓存键完成计数固定窗口,减少缓存读取;
- 开放更多
set*
方法,支持链式操作; - 禁止访问时,改用抛出
HttpResponseException
;
All versions of think-throttle with dependencies
PHP Build Version
Package Version
The package lx9912/think-throttle contains the following files
Loading the files please wait ....