当前位置:Gxlcms > PHP教程 > ngx_lua利用nginx内部跳转提高访问效率nginxapachenginxphpnginxrewrite

ngx_lua利用nginx内部跳转提高访问效率nginxapachenginxphpnginxrewrite

时间:2021-07-01 10:21:17 帮助过:2人阅读

lua里面有时候要去请求外面的链接,试过了几种方式,发现这个方式性能最佳

    location /set {
        default_type'text/html';
        proxy_set_header Host test.yufei.com;
        proxy_connect_timeout 5s;
        proxy_send_timeout 3s;
        proxy_read_timeout 3s;
        proxy_pass http://test.yufei.com/api?a=$aaa&b=$bbb;
    }

    location /change {
        set$a'';
        set$b'';
        content_by_lua '
            local time = os.date("%Y%m%d")
            local args = ngx.req.get_query_args()
            local a = args["a"]
            local b = args["b"]
            local res = ngx.location.capture("/set",
                { share_all_vars = true,
                 vars = { a = aaa , b = bbb }
                 })
            local text = res.body
            ngx.say(text)
            ngx.exit(200)
        ';
    }

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了ngx_lua利用nginx内部跳转提高访问效率,包括了nginx方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行