英文:
Is there a Go profiler?
问题
我在Go发布不久后稍微尝试了一下。那时还没有性能分析器,现在有了吗?
英文:
I played around with Go a bit shortly after it came out. There wasn't a profiler then; is there one now?
答案1
得分: 5
我使用pprof包和Google perftools。
英文:
I use pprof package, and Google perftools.
答案2
得分: 1
如果您使用gccgo
编译器而不是6g
编译器,您可能能够使用正常的GNU工具,例如gprof
。
我实际上还没有使用gprof
,但至少我知道它对于gdb
是有效的。
英文:
If you use the gccgo
compiler instead of the 6g
compiler, you'd probably be able to use the normal GNU tools, i.e. gprof
.
I haven't actually done it with gprof
, but I at least know that it works for gdb
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论