Comment on Iterative Optimization on Hot Paths in Go AppsparentComments−chrisseaton7yBump allocation is efficient and fast in single threaded programs but almost all Go applications are multi threaded and it would require locks there.If you’re using bump allocation you do it per thread! You don’t do it globally and use a lock!
Comments
If you’re using bump allocation you do it per thread! You don’t do it globally and use a lock!