- 博客(2)
- 收藏
- 关注
转载 【无标题】
实际的业务种,我们可能会有这么一种场景:需要我们主动的通知某一个goroutine结束。比如我们开启一个后台goroutine一直做事情,比如监控,现在不需要了,就需要通知这个监控goroutine结束,不然它会一直跑,就泄漏了; Context: WithCancel func main() { ctx, cancel := context.WithCancel(context.Background()) go func(ctx context.Context) { for { select
2022-04-08 09:53:16 67
原创 go -nsq 生产者消费者
nsq 生产者 package main import ( "bufio" "fmt" "os" "strings" "github.com/nsqio/go-nsq" ) var producer *nsq.Producer // 初始化生产者 func initProducer(str string) (err error) { config := nsq.NewConfig() producer, err = nsq.NewProducer(str, config) if e
2022-04-07 20:29:36 519
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人