码迷,mamicode.com
首页 > 其他好文 > 详细

openresty的ngx.timer.at

时间:2017-12-30 20:05:29      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:sleep   markdown   assert   后台运行   mes   方法   延迟   save   --   

openresty的ngx.timer.at真是个强大的方法。

  • 例如某些函数不可以在一些NGINX的执行阶段使用时,可以ngx.timer.at API 创建一个零延迟的timer,在timer中去处理。
  • 遇到一些高延迟的函数,因为定时调用是在后台运行,并且他们的执行不会增加任何客户端的响应时长
local function save_message(premature)
    ngx.sleep(5)
    local file = assert(io.open(‘/tmp/test.log‘,‘a+‘))
    file:write(string.format("timer=====> %s %s\n", ngx.time(), "in timer"))
    file:close()
end

local file = assert(io.open(‘/tmp/test.log‘,‘a+‘))
file:write(string.format("out tomer 1=====> %s %s\n", ngx.time(), "out timer 1"))
file:close()
ngx.sleep(5)
local file = assert(io.open(‘/tmp/test.log‘,‘a+‘))
file:write(string.format("out tomer 2=====> %s %s\n", ngx.time(), "out timer 2"))
file:close()
--ngx.sleep(5)
local ok, err = ngx.timer.at(0, save_message)
if not ok then
    ngx.log(ngx.ERR, "[blm-metric] failed to create timer: ", err)
end

ngx.say("success")

结果将在5秒后返回,查看日志,每隔5秒分别打印出三次的结果,

openresty的ngx.timer.at

标签:sleep   markdown   assert   后台运行   mes   方法   延迟   save   --   

原文地址:https://www.cnblogs.com/mentalidade/p/8150849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!