Go GC: Solving the Latency Problem in Go 1.5
sourcegraph.com
Go GC: Solving the Latency Problem in Go 1.5
1–10 of 132 posts
Re: Go GC: Solving the Latency Problem in Go 1.5
#2Looks like they are tackling this head on with positive results.
Re: Go GC: Solving the Latency Problem in Go 1.5
#3Re: Go GC: Solving the Latency Problem in Go 1.5
#4This is the exact opposite of the experience I've had with (most) software. A new CPU with a higher clock speed makes existing software faster, but most new software written for the new CPU will burn all of the extra CPU cycles on more layers of abstraction or poorly written code until it runs at the same speed that old code ran on the old CPU. I'm impressed that hardware designers and compiler authors can do their jobs well enough to make this sort of bloated software (e.g. multiple gigabytes for a word processor or image editor) succeed in spite of itself.
There are of course CPU advancements that make a huge performance difference when used properly (e.g. SSE, multiple cores in consumer machines) and some applications will use them to great effect, but these seem to be few and far between.
Re: Go GC: Solving the Latency Problem in Go 1.5
#5Erlang's per-process (Erlang process, not Unix process) GC is pretty good from this point of view. I'm surprised they didn't mention it as something to think about.
Very good low-latency GC is good an alternative to per-process GC, especially combined with Go's ability to let you write to avoid GC pressure.
Re: Go GC: Solving the Latency Problem in Go 1.5
#6Re: Go GC: Solving the Latency Problem in Go 1.5
#7> ...there has been a virtuous cycle between software and hardware development. CPU hardware improves, which enables faster software to be written, which in turn... This is the exact opposite of the experience I've had with (most) software. A new CPU with a higher clock speed makes existing software faster, but most new software written for the new CPU will burn all of the extra CPU cycles on more layers of abstracti…
If it was good enough last year, it's probably good enough today. Today I will solve new problems with even more resources.
Re: Go GC: Solving the Latency Problem in Go 1.5
#8Interesting. I think the GC pauses are go's biggest problem. Looks like they are tackling this head on with positive results.
Re: Go GC: Solving the Latency Problem in Go 1.5
#9> ...there has been a virtuous cycle between software and hardware development. CPU hardware improves, which enables faster software to be written, which in turn... This is the exact opposite of the experience I've had with (most) software. A new CPU with a higher clock speed makes existing software faster, but most new software written for the new CPU will burn all of the extra CPU cycles on more layers of abstracti…
Of course, when you end up with some standards-driven monstrosity like a modern web browser, you do seem to have a lot of unnecessary abstraction layers and also it's slow.
Re: Go GC: Solving the Latency Problem in Go 1.5
#10> ...there has been a virtuous cycle between software and hardware development. CPU hardware improves, which enables faster software to be written, which in turn... This is the exact opposite of the experience I've had with (most) software. A new CPU with a higher clock speed makes existing software faster, but most new software written for the new CPU will burn all of the extra CPU cycles on more layers of abstracti…