go 性能调优

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

使用pprof进行性能调优

获取cpu profile分析:
go tool pprof http://127.0.0.1:1993/debug/pprof/profile
获取mem profile分析:
go tool pprof http://192.168.1.131:1993/debug/pprof/heap

转载于:https://my.oschina.net/zilinangel1986/blog/1797824

你可能感兴趣的:(python)