Golang计算单个Goroutine占用内存

前端之家收集整理的这篇文章主要介绍了Golang计算单个Goroutine占用内存前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一直在想单个Goroutine大概占用多少内存呢?今天无意间在《Concurrency Go》中看到了这段计算单个Goroutine内存占用大小的代码分享给同样有迷惑人。
在Win7 Go1.9环境,大概是8.9KB~9.1KB,确实够小的。。。

package main

import (
    "fmt"
    "runtime"
    "sync"
)

func getGoroutineMemConsume() {
    var c chan int
    var wg sync.WaitGroup
    const goroutineNum = 1e4 // 1 * 10^4

    memConsumed := func() uint64 {
        runtime.GC() //GC,排除对象影响
        var memStat runtime.MemStats
        runtime.ReadMemStats(&memStat)
        return memStat.Sys
    }

    noop := func() {
        wg.Done()
        <-c //防止goroutine退出,内存被释放
    }

    wg.Add(goroutineNum)
    before := memConsumed() //获取创建goroutine前内存
    for i := 0; i < goroutineNum; i++ {
        go noop()
    }
    wg.Wait()
    after := memConsumed() //获取创建goroutine后内存

    fmt.Printf("%.3f KB\n",float64(after-before)/goroutineNum/1000)
}
原文链接:https://www.f2er.com/go/187079.html

猜你在找的Go相关文章