Go语言用time实现定时任务,后台周期性执行任务
知识点:
time context
time package
通过这个package可以很容易的实现与时间有关的操作。
time package中有一个ticker结构,可以实现定时任务。
超时控制的context有以下几种
1.指定时长超时结束
context.WithTimeout(parent Context, timeout time.Duration) (Context, CancelFunc)
2.手动结束
context.WithCancel(parent Context) (ctx Context, cancel CancelFunc)
3.指定时间结束
context.WithDeadline(parent Context, d time.Time) (Context, CancelFunc)
ps:
我这里使用context.WithTimeout
编辑器:
LiteIDE
测试框架
beego
实例代码:
package main
import (
_ "gblog/routers"
"context"
"fmt"
"time"
"github.com/astaxie/beego"
)
func main() {
//指定时长超时结束 3秒后结束
ctx, cancel := context.WithTimeout(context.TODO(), time.Second*3)
// 防止任务比超时时间短导致资源未释放
defer cancel()
//定时任务
go clock(ctx)
beego.Run()
}
//定时任务
func clock(ctx context.Context) {
ticker := time.NewTicker(1 * time.Second)
for {
select {
case <-ctx.Done():
return
case <-ticker.C:
fmt.Println("1 seconds")
}
}
}
运行一下看看效果:
我用的liteide直接ctrl+r 运行beego框架
相关文章