mirror of
https://github.com/teivah/100-go-mistakes.git
synced 2026-06-21 08:57:07 +08:00
Template and reorganization
This commit is contained in:
parent
3e133d2bce
commit
e2e91cfc7f
1 changed files with 3 additions and 1 deletions
|
|
@ -520,7 +520,9 @@ 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.
|
||||
|
||||
#### #98: Not using Go diagnostics tooling (profiling [enabling pprof, CPU, heap, goroutines, block, and mutex profiling] and execution traceRely on profiling and the execution tracer to understand how an application performs and the parts to optimize. #()))
|
||||
#### 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.
|
||||
|
||||
#### Not understanding how the GC works (#99)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue