摘要:
背景 需要并发的处理的任务 查阅 使用 waitgroup chan 代码实现 package main import ( "fmt" "sync" ) func main() { var l []int receive := func(w chan int, wg *sync.WaitGroup) 阅读全文
摘要:
背景记录 api 的返回值到日志 方便排查问题 查阅文档 使用Gin 提供方的中间件可以处理 点击查看代码 package main import ( "fmt" "math" ) const abortIndex int8 = math.MaxInt8 / 2 type Context struc 阅读全文