分类 golang 中的文章

go cron源码

cron源码 cron在线表达式 推荐使用在线工具来看自己写的 cron 对不对,简单的表达式直接写一般问题不大。这里推荐 crontab.guru,可以通过可视化的方式来查看你编写的定时规则。 cron源码包 创建任务 import "github.com/robfig/cron/v3" job := cron.new() job.AddFunc("*/1 * * * * *",func(){ fmt.println("hello") }) job.Start() 核心数据结构 // Cron keeps track of any number of entries, invoking the associated func as // specified by the schedule. It……

阅读全文

go基础

install download go: https://go.dev/dl/ ubuntu install go: https://www.digitalocean.com/community/tutorials/how-to-install-go-on-ubuntu-20-04 $ tar -C /usr/local -xvf goxxxx $ vim ~/.profile 行末尾添加 : export PATH=$PATH:/usr/local/go/bin $ source ~/.profile $ go version……

阅读全文