主頁 > 知識(shí)庫 > Golang中runtime的使用詳解

Golang中runtime的使用詳解

熱門標(biāo)簽:高德地圖標(biāo)注口訣 學(xué)海導(dǎo)航地圖標(biāo)注 南通如皋申請(qǐng)開通400電話 地圖標(biāo)注的汽車標(biāo) 中國地圖標(biāo)注省會(huì)高清 西部云谷一期地圖標(biāo)注 浙江高速公路地圖標(biāo)注 江西轉(zhuǎn)化率高的羿智云外呼系統(tǒng) 廣州呼叫中心外呼系統(tǒng)

runtime 調(diào)度器是個(gè)非常有用的東西,關(guān)于 runtime 包幾個(gè)方法:

  • Gosched:讓當(dāng)前線程讓出 cpu 以讓其它線程運(yùn)行,它不會(huì)掛起當(dāng)前線程,因此當(dāng)前線程未來會(huì)繼續(xù)執(zhí)行
  • NumCPU:返回當(dāng)前系統(tǒng)的 CPU 核數(shù)量
  • GOMAXPROCS:設(shè)置最大的可同時(shí)使用的 CPU 核數(shù)
  • Goexit:退出當(dāng)前 goroutine(但是defer語句會(huì)照常執(zhí)行)
  • NumGoroutine:返回正在執(zhí)行和排隊(duì)的任務(wù)總數(shù)
  • GOOS:目標(biāo)操作系統(tǒng)

NumCPU

package main

import (
  "fmt"
  "runtime"
)

func main() {
  fmt.Println("cpus:", runtime.NumCPU())
  fmt.Println("goroot:", runtime.GOROOT())
  fmt.Println("archive:", runtime.GOOS)
}

運(yùn)行結(jié)果:

GOMAXPROCS

Golang 默認(rèn)所有任務(wù)都運(yùn)行在一個(gè) cpu 核里,如果要在 goroutine 中使用多核,可以使用 runtime.GOMAXPROCS 函數(shù)修改,當(dāng)參數(shù)小于 1 時(shí)使用默認(rèn)值。

package main

import (
  "fmt"
  "runtime"
)

func init() {
  runtime.GOMAXPROCS(1)
}

func main() {
  // 任務(wù)邏輯...

}

Gosched

這個(gè)函數(shù)的作用是讓當(dāng)前 goroutine 讓出 CPU,當(dāng)一個(gè) goroutine 發(fā)生阻塞,Go 會(huì)自動(dòng)地把與該 goroutine 處于同一系統(tǒng)線程的其他 goroutine 轉(zhuǎn)移到另一個(gè)系統(tǒng)線程上去,以使這些 goroutine 不阻塞

package main

import (
  "fmt"
  "runtime"
)

func init() {
  runtime.GOMAXPROCS(1) //使用單核
}

func main() {
  exit := make(chan int)
  go func() {
    defer close(exit)
    go func() {
      fmt.Println("b")
    }()
  }()

  for i := 0; i  4; i++ {
    fmt.Println("a:", i)

    if i == 1 {
      runtime.Gosched() //切換任務(wù)
    }
  }
  -exit

}

結(jié)果:

使用多核測試:

package main

import (
  "fmt"
  "runtime"
)

func init() {
  runtime.GOMAXPROCS(4) //使用多核
}

func main() {
  exit := make(chan int)
  go func() {
    defer close(exit)
    go func() {
      fmt.Println("b")
    }()
  }()

  for i := 0; i  4; i++ {
    fmt.Println("a:", i)

    if i == 1 {
      runtime.Gosched() //切換任務(wù)
    }
  }
  -exit

}

結(jié)果:

根據(jù)你機(jī)器來設(shè)定運(yùn)行時(shí)的核數(shù),但是運(yùn)行結(jié)果不一定與上面相同,或者在 main 函數(shù)的最后加上 select{} 讓程序阻塞,則結(jié)果如下:

多核比較適合那種 CPU 密集型程序,如果是 IO 密集型使用多核會(huì)增加 CPU 切換的成本。

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • 如何判斷Golang接口是否實(shí)現(xiàn)的操作
  • 淺談golang中的&^位清空操作
  • Golang之defer 延遲調(diào)用操作
  • 解決golang sync.Wait()不執(zhí)行的問題
  • golang執(zhí)行命令操作 exec.Command
  • golang等待觸發(fā)事件的實(shí)例
  • 對(duì)Golang中的runtime.Caller使用說明

標(biāo)簽:曲靖 德宏 吐魯番 貴州 常州 東營 許昌 保定

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Golang中runtime的使用詳解》,本文關(guān)鍵詞  Golang,中,runtime,的,使用,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Golang中runtime的使用詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于Golang中runtime的使用詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章