Download the PHP package wilbur-yu/hyperf-cache-ext without Composer
On this page you can find all versions of the php package wilbur-yu/hyperf-cache-ext. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download wilbur-yu/hyperf-cache-ext
More information about wilbur-yu/hyperf-cache-ext
Files in wilbur-yu/hyperf-cache-ext
Package hyperf-cache-ext
Short Description hyperf cache counter rate limiter
License MIT
Informations about the package hyperf-cache-ext
说明
BETA
移植了 Laravel Cache 组件的 rate-limiter.
并对 \Psr\SimpleCache\CacheInterface
进行了补充. 增加了以下方法:
- increment
- decrement
- add
- put
安装
配置
- 修改cache配置文件:
for
即对应Laravel Facade
RateLimiter::for(callable)
,
在服务启动时, 监听器会收集该命名限制器数组, 供在注解中使用
for
参数引用. 在注解切面执行时, 会将当前请求\Hyperf\HttpServer\Contract\RequestInterface
实例注入到该命名闭包.
key
默认为当前请求fullUrl
+ip
的sha1
. 支持字符串与闭包.
- 可捕获异常
- 适用于计数器限流
WilburYu\HyperfCacheExt\Exception\CounterRateLimiterException::class
该异常自带一个
getHeaders
方法, 值为: array('X-RateLimit-Limit', 'X-RateLimit-Remaining', 'Retry-After', ' X-RateLimit-Reset') - 适用于漏斗与时间窗口限流
WilburYu\HyperfCacheExt\Exception\LimiterTimeoutException::class
使用
在控制器中使用
-
计数器限流注解
-
漏斗限流注解
- 时间窗口限流注解
注解参数同配置文件, 优先级为注解>配置>默认.
- 在计数器注解中使用
for
时,max_attempts
和decay_minutes
不起作用.timeout
和wait
参数, 适用于漏斗
和时间窗口
如果你的缓存驱动不是 redis
, 只可以使用 CounterRateLimit
注解.
反之则可以使用 CounterRateLimitWithRedis/ConcurrencyRateLimiter/DurationRateLimiter
注解.
在其他地方使用限速时, 可以使用辅助函数
- counter_limiter()
使用方法同 Laravel
中的 RateLimiter Facade
,
可参考 Laravel 限流文档
- concurrency_limiter()
使用方法同 Laravel
中的 Redis::funnel
门面代理方法
可参考高级限流器: 限定并发请求访问上限
- duration_limiter()
使用方法同 Laravel
中的 Redis::throttle
门面代理方法
可参考高级限流器: 限定单位时间访问上限
感谢
All versions of hyperf-cache-ext with dependencies
hyperf/cache Version ^3.0
hyperf/di Version ^3.0
hyperf/exception-handler Version ^3.0
hyperf/framework Version ^3.0
hyperf/http-server Version ^3.0
hyperf/redis Version ^3.0
hyperf/stringable Version ^3.0
hyperf/support Version ^3.0
hyperf/tappable Version ^3.0