1、 安裝建議下載openresty ,包裝比較全,安裝簡單方便;
下載位址http://openresty.org/download/ngx_openresty-1.7.10.1.tar.gz
2、編譯config - /usr/local/openresty/nginx/conf/nginx.conf
# http段內新增下面引入redis支援:lua_package_path "/home/ngx_openresty-1.7.10.1/bundle/lua-resty-redis-0.20/lib/resty/?.lua;"; lua腳本緩存,使得每次呼叫載入腳本,腳本修改不需要重新啟動nginx
4. nginx lua腳本使用方法
set $test "hello world.";
content_by_lua 'ngx.say(ngx.var.test);
'; }
lua腳本檔案呼叫
location /extlua{
content_by_lua_file /home/lua_script/redis_test.luaa
; url "http:/127.0.0.1/lua?id= 1&name=pop"
以上就介紹了nginx+lua+redis 使用方法,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。