程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> openresty中使用lua-nginx創建socket實例

openresty中使用lua-nginx創建socket實例

編輯:更多關於編程

       這篇文章主要介紹了openresty中使用lua-nginx創建socket實例,本文直接給出代碼實例和運行效果,需要的朋友可以參考下

      Lua語言太強大了,至少我是這樣覺得的。原始的Lua沒有Socket功能,需要使用者下載Lua socket組件,require一下才行。而lua-nginx模塊自帶了socket功能,而且是100%的非阻塞模式,再次感謝作者章亦春。

      使用socket功能很簡單,只有幾個簡單的方法即可主要就是有TCP和UDP的區別。(這裡只是lua文件,其他請見Hello world 文章)

       代碼如下:

      local sock = ngx.socket.tcp()

      local ok,err = sock:connect('whois.cnnic.net.cn',43)

      if not ok then

      ngx.say('Failed to connect whois server',err)

      return

      end

      sock:settimeout(5000)

      local ok, err = sock:send("baidu.cnrn")

      if not ok then

      ngx.say('Failed to send data to whois server', err)

      return

      end

      local line, err, partial = sock:receive('*a')

      if not line then

      ngx.say('Failed to read a line', err)

      return

      end

      ngx.print(line)

      完美運行:

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved