ホームページ >バックエンド開発 >PHPチュートリアル >[オープンレスティ] Hello World
[openresty] hello world
openresty ソフトウェアのデプロイメント
言うまでもなく、nginx に似ています。
content_by_lua 命令
content_by_lua 命令を使用すると、実行のために lua コードの一部を nginx に含めることができます。たとえば、以下の最も簡単な ngx.say の呼び出しは Hello world を出力します。
<code> location / { default_type <span>text</span>/html; content_by_lua ' ngx.<span>say</span>(<span>"<p>hello, world</p>"</span>) '; } </code>
長いコードは、rewrite_by_lua_file
の後にパス path
<code> location / { content_by_lua_file lua/hello.lua; } [root<span>@test</span> nginx]<span># cat lua/hello.lua</span> ngx.<span>say</span>(<span>"<p>hello, world!!! hey man</p>"</span>) </code>
lua_code_cache
を使用するのに適しています
<code>lua_code_cache <span>off</span>;</code>lua_code_cache デフォルトでは、nginx には Lua コードセグメント用のキャッシュ層があり、効率が向上しますが、これには毎回 Lua を変更する必要もありますこの時点で、キャッシュをオフにすることができます。キャッシュはリアルタイムで有効になり、デバッグが完了した後にオンになります。
rrreee
').addClass('事前番号付け').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i').text(i)); }; $numbering.fadeIn(1700); }); });
🎜 上記は、関連コンテンツも含めて [openresty] hello world を紹介しています。PHP チュートリアルに興味のある友人に役立つことを願っています。 🎜 🎜 🎜