1. インストールには、openresty をダウンロードすることをお勧めします。パッケージは比較的完成しており、インストールは簡単です。
ダウンロード アドレス http://openresty.org/download/ngx_openresty-1.7.10.1.tar.gz
2.tar xzvf ngx_openresty-1.7.10.1.tar.gz cd ngx_openresty-1.7.10.1 ./configure --with-luajit make make install
4. nginx lua スクリプトの使用方法
content_by_lua_file /home/lua_script/redis_test.lua;
}5.curl テスト get post リクエスト メソッド
get request:curl "http://127.0.0.1/lua? id= 1&name=pop"
post リクエスト:curl -d "id=1&age=20" "http://127.0.0.1/extlua"
複数のパラメータ URL アドレスは二重引用符で囲む必要があります
上記では、nginx+lua+redis の使用方法を関連コンテンツも含めて紹介しています。PHP チュートリアルに興味のある友人に役立つことを願っています。