Tinkering with go profiling mechanisms
Find a file
2025-01-02 17:50:53 +00:00
.gitignore Experiences with go profiling mechanism 2025-01-02 17:50:53 +00:00
go.mod Experiences with go profiling mechanism 2025-01-02 17:50:53 +00:00
main.go Experiences with go profiling mechanism 2025-01-02 17:50:53 +00:00
main_test.go Experiences with go profiling mechanism 2025-01-02 17:50:53 +00:00
README.md Experiences with go profiling mechanism 2025-01-02 17:50:53 +00:00

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