Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 276 Bytes

File metadata and controls

17 lines (12 loc) · 276 Bytes

Benchmarks e profiling

Este tópico conecta benchmark e profiling a decisões de otimização.

Teste e benchmark

go test ./...
go test -bench=. -benchmem ./...

Perfil de CPU

go test -bench=. -cpuprofile cpu.out ./...
go tool pprof cpu.out