yiGmMk / comment_blog

the comments of www_programnotes_cn
0 stars 0 forks source link

go-pprof | ProgramNotes #86

Open yiGmMk opened 1 year ago

yiGmMk commented 1 year ago

https://programnotes.cn/go-pprof/index.html

WhatHowDisplay go tool pprof -http=:9999 cpu.pprof Benchmark & pprof gen 123456789101112131415161718192021func fib(n int) int { if n == 0 || n == 1 { return n } return fib(n-2) +