Memory Allocation
Briefly introduce the strategies that how go runtime allocates memory.
Answer
For small objects(<=32KB), go runtime starts with cache firstly, then central, and finally heap.
For big objects(>32KB), directly from heap.
本文档使用 BookStack 构建