codecamp

GoFrame gcron-gcron与gtimer区别

gcron与gtimer区别

定时任务-gcron 与 定时器-gtimer 区别:

  • gtimer​属于高性能模块,是框架核心模块,构建任何定时任务的基础,任何方法操作耗时均在纳秒级别。
  • gtimer​可适用于任何的定时任务场景中,例如: TCP通信、游戏开发等场景。
  • gcron​支持经典的​crontab​形式的定时任务语法,最小时间设定间隔为秒。
  • gcron​底层实现基于​gtimer​。

相似模块
说明
性能
类Linux Crontab模式
底层实现
定时任务-gcron 定时任务。较上层封装。 一般 支持 基于gtimer
定时器-gtimer 定时器。底层组件。 高效 不支持 基于PriorityQueue数据结构自实现


GoFrame gcron-基本使用
GoFrame gfile-基本介绍
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

GoFrame 核心组件

GoFrame 核心组件-数据库ORM

GoFrame 模块列表

GoFrame 模块列表-单元测试

GoFrame 模块列表-功能调试

GoFrame WEB服务开发

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }