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.
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.