在CentOS 6.9 x86_64上玩轉OpenResty 1.13.6.1中的resty-cli模組

來源:互聯網
上載者:User

resty-cli是OpenResty中命令列工具的集合,其中resty工具是最有用的。

安裝好OpenResty之後,resty-cli就會預設安裝,以我的安裝為例,參見博文

http://blog.csdn.net/tao_627/article/details/78912545

它的位置在/opt/openresty/bin下面



前提條件

OpenResty 1.7.7.2+


配置環境變數

vim /etc/profile

將末尾添加進目錄/opt/openresty/bin

export PATH=/opt/openresty/nginx/sbin:/opt/openresty/bin:$PATH

儲存退出,然後運行下面的命令生效

source /etc/profile

執行下面的命令檢查

echo $PATH



安裝依賴庫

yum -y install perl-Time-HiRes

原因參見博文

http://blog.csdn.net/tao_627/article/details/78919286
然後我們可以查看resty的路徑和版本號碼

resty -h

resty -v




業務需求
通常我們驗證nginx_lua中的指令碼,或者調試lua相關程式碼片段,或者瞭解ngx.md5之類函數的用法等,只能通過加入nginx.conf中的配置,在nginx架構上玩。
但是這未免比較不便,如果我們有一個命令列工具類似lua, luajit, python等直接執行該多好啊。那麼這裡的resty就是你想要的工具。

測試範例

下面的幾個例子都是來自resty-cli模組的官網

resty -e 'print("hello world")'

time resty -e 'ngx.sleep(3) print("done\n")'

resty -e 'ngx.say(ngx.md5("hello"))'

resty -e 'io.stderr:write("hello world\n")' > /dev/null


更深入的例子及高深玩法有待後續繼續挖掘

resty -e 'print("got: ", io.stdin:read("*l"))'


其中taoyunxing是我從鍵盤輸入的內容。

time resty -e 'local ths = {}
                 for i = 1, 3 do
                     ths[i] = ngx.thread.spawn(function ()
                                  ngx.sleep(3) ngx.say("done ", i)
                              end)
                 end
                 for i = 1, #ths do ngx.thread.wait(ths[i]) end'


resty --shdict='dogs 1m' -e 'local dict = ngx.shared.dogs                               dict:set("Tom", 56)                               print(dict:get("Tom"))'



參考文獻

[1].https://openresty.org/cn/resty-cli.html

[2].https://github.com/openresty/resty-cli#readme

[3].

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.