go-profile/README.md
2025-01-02 17:52:21 +00:00

164 B

Profiling

Compile it

go build

Test it

go test

Profile CPU

go test -cpuprofile cpu.prof -bench .

Visualize profiled data

go tool pprof cpu.prof