From e2e91cfc7fcea558edfabc8ca9e936f4387dbbed Mon Sep 17 00:00:00 2001 From: Teiva Harsanyi Date: Wed, 17 Aug 2022 15:54:26 +0200 Subject: [PATCH] Template and reorganization --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e859f13..f606258 100644 --- a/README.md +++ b/README.md @@ -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)