首頁 > 軟體

GoFrame基於效能測試得知grpool使用場景

2022-06-20 22:00:12

前言摘要

之前寫了一篇 grpool goroutine池詳解 | 協程管理 收到了大家積極的反饋,今天這篇來做一下grpool的效能測試分析,讓大家更好的瞭解什麼場景下使用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 Kbn", 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 Kbn", 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節省記憶體,如果機器的記憶體不高或者業務場景對記憶體佔用的要求更高,則使用grpool。

如果機器的記憶體足夠,但是對應用的執行時間有更高的追求,就用原生的goroutine。

更多關於GoFrame效能測試grpool使用場景的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com