Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 572 Bytes

variables.md

File metadata and controls

9 lines (5 loc) · 572 Bytes

Variables

  • GOMAXPROCS: This variable limits the number of OS's threads which are dedicated to user processes.

The usage of GOMAXPROCS variable becomse critical while dealing with throtling. The closer GOMAXPROCS is to the CPU limit, the less throttling occurs. This fact is described in the this link.

  • GODEBUG:

  • GORACE: Plays the role of Race detector in programs which are executed using -race flag.