前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >go语言限制Goroutine数量

go语言限制Goroutine数量

原创
作者头像
IT工作者
发布2021-12-24 09:58:09
7340
发布2021-12-24 09:58:09
举报
文章被收录于专栏:程序技术知识
代码语言:go
复制
package main
 
import (
	_ "ORMTest/routers"
	"fmt"
	"runtime"
	"time"
)
 
func main() {
	runtime.GOMAXPROCS(runtime.NumCPU())
	c := make(chan bool, 100)
	t := time.Tick(time.Second)
 
	go func() {
		for {
			select {
			case <-t:
				watching()
			}
		}
	}()
 
	for i := 0; i < 10000000; i++ {
		c <- true
		go worker(i, c)
	}
 
	fmt.Println("Done")
}
 
func watching() {
	fmt.Printf("NumGoroutine: %d\n", runtime.NumGoroutine())
}
 
func worker(i int, c chan bool) {
	//fmt.Println("worker", i)
	time.Sleep(100 * time.Microsecond)
	<-c
}

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档