Skip to content

Instantly share code, notes, and snippets.

@xyproto
Last active August 1, 2017 17:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xyproto/4371684110e6305c2413f160527d4ae6 to your computer and use it in GitHub Desktop.
Save xyproto/4371684110e6305c2413f160527d4ae6 to your computer and use it in GitHub Desktop.
Garbage collection is not mandatory in Go

Go

Disable garbage collection:

debug.SetGCPercent(-1)

Trigger garbage collection:

runtime.GC()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment