▲ 4 ▼ Go memory ballast - how i learnt to stop worrying and love the heap blog.twitch.tv posted by kenny 1816 days ago ▲ js 1809 days ago ▼ Interesting. I've seen people using sync.Pool for similar results: when you put them back to the pool, allocations are already done, even if you reset data. This way you can tune down allocating memory for vanity data. Contributing Register to comment or vote on this story
Interesting. I've seen people using sync.Pool for similar results: when you put them back to the pool, allocations are already done, even if you reset data. This way you can tune down allocating memory for vanity data.