Template and reorganization

This commit is contained in:
Teiva Harsanyi 2022-08-17 15:55:12 +02:00
parent e2e91cfc7f
commit e8052c7e6b
No known key found for this signature in database
GPG key ID: 421EF65C3FD2F93C

View file

@ -520,7 +520,7 @@ Reducing allocations is also an essential aspect of optimizing a Go application.
Use the fast-path inlining technique to efficiently reduce the amortized time to call a function. Use the fast-path inlining technique to efficiently reduce the amortized time to call a function.
#### Not using Go diagnostics tooling (profiling [enabling pprof, CPU, heap, goroutines, block, and mutex profiling] and execution tracer (#98) #### Not using Go diagnostics tooling (profiling [enabling pprof, CPU, heap, goroutines, block, and mutex profiling] and execution tracer) (#98)
Rely on profiling and the execution tracer to understand how an application performs and the parts to optimize. Rely on profiling and the execution tracer to understand how an application performs and the parts to optimize.