在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Lua是一种跟JavaScript很像的语言,Ngix_Lua同样使用异步单线程,语法甚至比JS更加简单,之前的评测指出,Ngix_lua的性能几乎是Node.JS的一倍。 Nginx 特点 1.流行的高性能HTTP服务器 通过lua-nginx-module即可在nginx上启动lua脚本。 一个例子: 复制代码 代码如下: location / { content_by_lua ' local res = ngx.location.capture("/sub") if res.status >= 500 then ngx.exit(res.status) end ngx.status = res.status ngx.say(res.body) '; } location /sub { echo "Hello, Sub-Request!"; } lua-nginx-module在Github上的项目地址 https://github.com/openresty/lua-nginx-module |
请发表评论