openresty將nginx+lua進行了整合,由國人開發。
官網:
以centos舉例 其他系統參照:linux-packages.html
你可以在你的 centos 系統中新增 openresty 倉庫,這樣就可以便於未來安裝或更新我們的軟體包(通過 yum update 命令)。執行下面的命令就可以新增我們的倉庫:
yum install yum-utils
yum-config-manager --add-repo
然後就可以像下面這樣安裝軟體包,比如 openresty:
yum install openresty
如果你想安裝命令列工具 resty,那麼可以像下面這樣安裝 openresty-resty 包:
sudo yum install openresty-resty
openresty目錄結構
OpenResty原始碼編譯安裝 Linux
configure prefix usr local openresty with luajit with http ssl module user root group root with http realip module add module bundle ngx cache purge 2...
redis預編譯安裝 啟動
redis是乙個強大的nosql資料庫,相對於memcached,他提供了更豐富的資料型別,有string hash list set sorted set這幾種型別 還支援資料持久化。光string型別,就比memcached功能更強大,提供了獲取 設定子串 bit位等更靈活的操作,其他型別是me...
JS預編譯 函式預編譯和全域性預編譯
預編譯發生在函式執行前一步 建立ao物件 執行期上下文 找形參和變數宣告,將變數和形參名作為ao 屬性名,值為undefined 將實參值和形參統一 在函式體裡面找函式宣告,值賦予函式體 結果 預編譯過程 函式馬上要執行,但是還沒執行 首先建立ao物件,也就是函式它產生的儲存空間庫 ao,b und...