OpenResty之resty.limit.count 模块介绍
resty.limit.count 模块介绍:
resty.limit.count 模块就是限制接口单位时间的请求数,
This module depends on lua-resty-core模块,所以要在openresty 的http标签端添加
nginx
init_by_lua_block {
require “resty.core”
}
同时resty.limit.count模块是在 OpenResty 1.13.6.1+ 引入的
openresty下开启resty.limit.count此模块的流程如下:
1.要开启resty.core openresty内核模块
注意:resty.core 此模块只能放到openresty的http标签,且只允许存在一个
2.nginx vhost配置文件:
**3.配置resty.limit.count 模块的lua脚本: **
4.ab简单压测
采用ab软件简单压测如下:
ab -c 2 -n 50 -t 1 ‘ http://01limit.count.com/2.html’
到此处resty.limit.count模块演示完成