ホームページ >バックエンド開発 >Golang >Go でアクティブなゴルーチンを効率的に数えて管理するにはどうすればよいですか?

Go でアクティブなゴルーチンを効率的に数えて管理するにはどうすればよいですか?

Patricia Arquette
Patricia Arquetteオリジナル
2024-12-10 07:09:13835ブラウズ

How Can I Efficiently Count and Manage Active Goroutines in Go?

アクティブなゴルーチンの数

複数のゴルーチンを同時に管理する場合、多くの場合、アクティブなゴルーチンの数を監視する必要があります。 Go では、ネイティブの runtime.NumGoroutine() 関数がこの情報を提供します。

次の例を考えてみましょう:

var element int

func deen(queue chan int) {

    element := <-queue
    fmt.Println("element is ", element)
    if element%2 == 0 {
        fmt.Println("new element is ", element)
        queue <- (element*100 + 11)
        queue <- (element*100 + 33)
    }
}

func main() {
    queue := make(chan int, 10)
    queue <- 1
    queue <- 2
    queue <- 3
    queue <- 0
    for len(queue) != 0 {
        for i := 0; i < 2; i++ {
            go deen(queue)
        }
    }
    fmt.Scanln()
    fmt.Println("list has len", len(queue)) //this must be 0
}

このコードはゴルーチンの使用法を示していますが、方法は提供しません。

これに対処するには、より効率的なアプローチは、複数の goroutine の完了を調整する sync.WaitGroup。

func deen(wg *sync.WaitGroup, queue chan int) {
    for element := range queue {
        fmt.Println("element is ", element)
        if element%2 == 0 {
            fmt.Println("new element is ", element)
            wg.Add(2)
            queue <- (element*100 + 11)
            queue <- (element*100 + 33)
        }
        wg.Done()
    }
}

func main() {
    var wg sync.WaitGroup
    queue := make(chan int, 10)
    queue <- 1
    queue <- 2
    queue <- 3
    queue <- 0
    for i := 0; i < 4; i++ {
        wg.Add(1)
        go deen(&wg, queue)
    }
    wg.Wait()
    close(queue)
    fmt.Println("list has len", len(queue)) //this must be 0

}

この変更されたコードでは、sync.WaitGroup はアクティブな goroutine の数を追跡するために使用されます。各 goroutine は完了時にカウンターをデクリメントし、メイン goroutine はすべての goroutine の実行が完了するまで待機してから続行します。

runtime.NumGoroutine() またはより効率的な sync.WaitGroup を活用することで、Go プログラマは効果的に監視および管理できます。アプリケーション内のアクティブな goroutine。

以上がGo でアクティブなゴルーチンを効率的に数えて管理するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。