欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

ngx_lua利用nginx内部跳转提高访问效率 nginx apache nginx php nginx rewrite

程序员文章站 2022-05-22 16:02:29
...
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 ').text(i)); }; $numbering.fadeIn(1700); }); });

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

相关标签: nginx