中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

GoFrame基于性能怎么測試grpool使用場景

發布時間:2022-06-21 09:20:21 來源:億速云 閱讀:173 作者:iii 欄目:開發技術

今天小編給大家分享一下GoFrame基于性能怎么測試grpool使用場景的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

先說結論

grpool相比于goroutine更節省內存,但是耗時更長;

原因也很簡單:grpool復用了協程,減少了協程的創建和銷毀,減少了內存消耗;也因為協程的復用,總的goroutine數量更少,導致耗時更多。

測試性能代碼

開啟for循環,開啟一萬個協程,分別使用原生goroutine和grpool執行。

看兩者在內存占用和耗時方面的差別。

package main
import (
   "flag"
   "fmt"
   "github.com/gogf/gf/os/grpool"
   "github.com/gogf/gf/os/gtime"
   "log"
   "os"
   "runtime"
   "runtime/pprof"
   "sync"
   "time"
)
func main() {
   //接收命令行參數
   flag.Parse()
   //cpu分析
   cpuProfile()
   //主邏輯
   //demoGrpool()
   demoGoroutine()
   //內存分析
   memProfile()
}
func demoGrpool() {
   start := gtime.TimestampMilli()
   wg := sync.WaitGroup{}
   for i := 0; i < 10000; i++ {
      wg.Add(1)
      _ = grpool.Add(func() {
         var m runtime.MemStats
         runtime.ReadMemStats(&m)
         fmt.Printf("運行中占用內存:%d Kb\n", m.Alloc/1024)
         time.Sleep(time.Millisecond)
         wg.Done()
      })
      fmt.Printf("運行的協程:", grpool.Size())
   }
   wg.Wait()
   fmt.Printf("運行的時間:%v ms \n", gtime.TimestampMilli()-start)
   select {}
}
func demoGoroutine() {
   //start := gtime.TimestampMilli()
   wg := sync.WaitGroup{}
   for i := 0; i < 10000; i++ {
      wg.Add(1)
      go func() {
         //var m runtime.MemStats
         //runtime.ReadMemStats(&m)
         //fmt.Printf("運行中占用內存:%d Kb\n", m.Alloc/1024)
         time.Sleep(time.Millisecond)
         wg.Done()
      }()
   }
   wg.Wait()
   //fmt.Printf("運行的時間:%v ms \n", gtime.TimestampMilli()-start)
}
var cpuprofile = flag.String("cpuprofile", "", "write cpu profile `file`")
var memprofile = flag.String("memprofile", "", "write memory profile to `file`")
func cpuProfile() {
   if *cpuprofile != "" {
      f, err := os.Create(*cpuprofile)
      if err != nil {
         log.Fatal("could not create CPU profile: ", err)
      }
      if err := pprof.StartCPUProfile(f); err != nil { //監控cpu
         log.Fatal("could not start CPU profile: ", err)
      }
      defer pprof.StopCPUProfile()
   }
}
func memProfile() {
   if *memprofile != "" {
      f, err := os.Create(*memprofile)
      if err != nil {
         log.Fatal("could not create memory profile: ", err)
      }
      runtime.GC()                                      // GC,獲取最新的數據信息
      if err := pprof.WriteHeapProfile(f); err != nil { // 寫入內存信息
         log.Fatal("could not write memory profile: ", err)
      }
      f.Close()
   }
}

運行結果

組件占用內存耗時
grpool2229 Kb1679 ms
goroutine5835 Kb1258 ms

以上就是“GoFrame基于性能怎么測試grpool使用場景”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

达尔| 彰化县| 万州区| 嫩江县| 镇赉县| 绩溪县| 根河市| 云安县| 澄迈县| 泸州市| 法库县| 富民县| 台中市| 邳州市| 贵州省| 金塔县| 乌兰浩特市| 兴化市| 长泰县| 九江市| 嘉善县| 武义县| 阿巴嘎旗| 宣威市| 平远县| 会理县| 凭祥市| 荥经县| 玉山县| 凤台县| 海淀区| 台北县| 镇康县| 丹东市| 乃东县| 如皋市| 西畴县| 多伦县| 营山县| 灵璧县| 中江县|