主頁(yè) > 知識(shí)庫(kù) > openresty中使用lua-nginx創(chuàng)建socket實(shí)例

openresty中使用lua-nginx創(chuàng)建socket實(shí)例

熱門標(biāo)簽:清朝地圖標(biāo)注哈爾濱 武漢外呼防封系統(tǒng)多少錢 冀州市地圖標(biāo)注 百度地圖標(biāo)注早餐區(qū)域 地圖標(biāo)注大廈 怎么去除地圖標(biāo)注 新岸線智能電銷機(jī)器人 漳州智云呼電話機(jī)器人 個(gè)人怎么在地圖標(biāo)注需要的店鋪

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

使用socket功能很簡(jiǎn)單,只有幾個(gè)簡(jiǎn)單的方法即可主要就是有TCP和UDP的區(qū)別。(這里只是lua文件,其他請(qǐng)見(jiàn)Hello world 文章)

復(fù)制代碼 代碼如下:

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.cn\r\n")
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)

完美運(yùn)行:


您可能感興趣的文章:
  • 安裝Nginx+Lua開(kāi)發(fā)環(huán)境
  • nginx中使用lua腳本的方法
  • Lua和Nginx結(jié)合使用的超級(jí)指南
  • Nginx+Lua+Redis構(gòu)建高并發(fā)Web應(yīng)用
  • 使用nginx+lua實(shí)現(xiàn)信息訪問(wèn)量統(tǒng)計(jì)
  • linux系統(tǒng)安裝Nginx Lua環(huán)境

標(biāo)簽:宣城 臺(tái)灣 儋州 德宏 金昌 濰坊 天門 天門

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《openresty中使用lua-nginx創(chuàng)建socket實(shí)例》,本文關(guān)鍵詞  openresty,中,使用,lua-nginx,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《openresty中使用lua-nginx創(chuàng)建socket實(shí)例》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于openresty中使用lua-nginx創(chuàng)建socket實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章