Maison  >  Article  >  développement back-end  >  ngx_lua利用nginx内部跳转提高访问效率 nginx apache nginx php nginx rewrite

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

WBOY
WBOYoriginal
2016-07-29 08:54:331166parcourir

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

<code>    location /<span>set</span> {
        default_<span>type</span><span>'text/html'</span>;
        proxy_<span>set</span>_header Host test.yufei.com;
        proxy_connect_timeout <span>5</span>s;
        proxy_send_timeout <span>3</span>s;
        proxy_<span>read</span>_timeout <span>3</span>s;
        proxy_pass http://test.yufei.com/api?a=<span>$aaa</span>&b=<span>$bbb</span>;
    }

    location /change {
        <span>set</span><span>$a</span><span>''</span>;
        <span>set</span><span>$b</span><span>''</span>;
        content_by_lua <span>'
            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)
        '</span>;
    }</code>
').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教程有兴趣的朋友有所帮助。

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn