Re: [go-nuts] What is the impact of allocation costs on latency?

2020-06-25 Thread Ian Lance Taylor
On Thu, Jun 25, 2020 at 10:32 AM wrote: > > Thank you for your reply Ian. I should have mentioned that I was looking at > the sources for Go 1.14.2. I see the scheme you're describing is in the as > yet unreleased 1.15 sources (and the function I was concerned about is now > called 'oldCacheSpa

Re: [go-nuts] What is the impact of allocation costs on latency?

2020-06-25 Thread doohick
Thank you for your reply Ian. I should have mentioned that I was looking at the sources for Go 1.14.2. I see the scheme you're describing is in the as yet unreleased 1.15 sources (and the function I was concerned about is now called 'oldCacheSpan'). It's great to see the developers drive down so

Re: [go-nuts] What is the impact of allocation costs on latency?

2020-06-24 Thread Ian Lance Taylor
On Wed, Jun 24, 2020 at 5:28 PM wrote: > > I'm considering Go for a new service application and I'd like to minimize the > time between a request being received and the response being sent (i.e., > response latency). I like what I've read about all the work that's gone into > the golang garbage

[go-nuts] What is the impact of allocation costs on latency?

2020-06-24 Thread doohick
I'm considering Go for a new service application and I'd like to minimize the time between a request being received and the response being sent (i.e., response latency). I like what I've read about all the work that's gone into the golang garbage collector to reduce stop-the-world pause times,