Golang
golang性能分析profiling,内置了两个采集工具 runtime/pprof net/http/pprof 针对网络应用 直接采样 go tool pprof http://localhost:8005/debug/pprof/heap http://localhost:8005/debug/pprof/trace?seconds=30 下载trace go tool trace xxx, 然后可以在协程分析中查看各类协程执行/网络/同步阻塞/系统调用阻塞/调度/GC等的时间分配 火焰图能够直观的看出哪些地方耗时比较多,需要优化,无论是go python还是其他语言中都值···
2019年10月26日
~ 1061字·3分钟