ngx_lua uses nginx internal jumps to improve access efficiency nginx apache nginx php nginx rewrite

WBOY
Release: 2016-07-29 08:54:33
Original
1163 people have browsed it

Sometimes we need to request external links in Lua. I have tried several methods and found that this method has the best performance

<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>
Copy after login
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

The above introduces how ngx_lua uses nginx internal jumps to improve access efficiency, including nginx content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template