日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

在進行并發編程時,我們經常遇到需要等待所有goroutine完成后再繼續執行的情況。在Go語言中,我們可以通過使用WaitGroup來實現這個目標。WaitGroup是一個計數信號量,可以用于等待一組goroutine的完成。在繼續之前,我們需要調用WaitGroup的Wait方法,這樣可以確保所有的goroutine都已經完成了任務。在本文中,我們將介紹如何正確使用WaitGroup來管理goroutine的執行順序。

問題內容

我需要 golang 調度程序在繼續之前運行所有 goroutine,runtime.gosched() 無法解決。

問題在于 go 例程運行速度太快,以至于 start() 中的“select”在 stopstream() 內的“select”之后運行,然后“case

運行此代碼https://go.dev/play/p/dq85xqju2q_z
很多時候你會看到這兩個回應
未掛起時的預期響應:

2009/11/10 23:00:00 start
2009/11/10 23:00:00 receive chan
2009/11/10 23:00:03 end

登錄后復制

掛起時的預期響應,但掛起時的響應卻不是那么快:

2009/11/10 23:00:00 start
2009/11/10 23:00:00 default
2009/11/10 23:00:01 timer
2009/11/10 23:00:04 end

登錄后復制

代碼

package main

import (
    "log"
    "runtime"
    "sync"
    "time"
)

var wg sync.WaitGroup

func main() {
    wg.Add(1)
    //run multiples routines on a huge system
    go start()
    wg.Wait()
}
func start() {
    log.Println("Start")
    chanStopStream := make(chan bool)
    go stopStream(chanStopStream)
    select {
    case <-chanStopStream:
        log.Println("receive chan")
    case <-time.After(time.Second): //if stopStream hangs do not wait more than 1 second
        log.Println("TIMER")
        //call some crash alert
    }
    time.Sleep(3 * time.Second)
    log.Println("end")
    wg.Done()
}

func stopStream(retChan chan bool) {
    //do some work that can be faster then caller or not
    runtime.Gosched()
    //time.Sleep(time.Microsecond) //better solution then runtime.Gosched()
    //time.Sleep(2 * time.Second) //simulate when this routine hangs more than 1 second
    select {
    case retChan <- true:
    default: //select/default is used because if the caller times out this routine will hangs forever
        log.Println("default")
    }
}

登錄后復制

解決方法

在繼續執行當前 goroutine 之前,沒有辦法運行所有其他 goroutine。

通過確保 goroutine 不會在 stopstream 上阻塞來修復問題:

選項 1:將 chanstopstream 更改為緩沖通道。這確保了 stopstream 可以無阻塞地發送值。

func start() {
    log.println("start")
    chanstopstream := make(chan bool, 1) // <--- buffered channel
    go stopstream(chanstopstream)
    ...
}

func stopstream(retchan chan bool) {
    ...
    // always send. no select/default needed.
    retchan <- true
}

登錄后復制

https://www.php.cn/link/56e48d306028f2a6c2ebf677f7e8f800

選項 2:關閉通道而不是發送值。通道始終可以由發送者關閉。在關閉的通道上接收返回通道值類型的零值。

func start() {
    log.Println("Start")
    chanStopStream := make(chan bool) // buffered channel not required
    go stopStream(chanStopStream)
    ...

func stopStream(retChan chan bool) {
    ...
    close(retChan)
}

登錄后復制

https://www.php.cn/link/a1aa0c486fb1a7ddd47003884e1fc67f

分享到:
標簽:Go語言
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定