time_helper.lua
local _M = {}; local ffi = require("ffi") ffi.cdef[[ struct timeval { long int tv_sec; long int tv_usec; }; int gettimeofday(struct timeval *tv, void *tz); ]]; local tm = ffi.new("struct timeval"); -- 返回微秒级时间戳 function _M.current_time_millis() ffi.C.gettimeofday(tm,nil); local sec = tonumber(tm.tv_sec); local usec = tonumber(tm.tv_usec); return sec + usec * 10^-6; end return _M;
test.lua
local time_helper = require "time_helper" local a = time_helper.current_time_millis() local b = time_helper.current_time_millis() ngx.say((b-a)*1000)
创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。
网站名称:openrestylua获取微秒和毫秒-创新互联
文章路径:https://www.cdcxhl.com/article16/dspigg.html
成都网站建设公司_创新互联,为您提供定制开发、用户体验、定制网站、网站收录、移动网站建设、网站设计
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联