Default severity: warning
Discourage explicit garbage collection. Default: runtime.GC.
Bad
runtime.GC() // in normal application codeGood
buffer = nil // let Go collect it when appropriateDiscourage explicit garbage collection.
Default severity: warning
Discourage explicit garbage collection. Default: runtime.GC.
runtime.GC() // in normal application codebuffer = nil // let Go collect it when appropriate