Earlier quoted context omitted.
Go is kind of special, as it is new relatively and the initial implementation of every feature is usually the most basic possible. Thus, every new version there is space for a lot of improvements. What I mean: the garbage collector is/was for all intents and purposes Dijkstra's late 70s ('78) tricolor algorithm. They eliminated re-scanning of the stack on Go 1.7 by adding a hybrid write barrier which is 90's work (fo…
> So Go is by no means state-of-the-art performance wise. Yet Go is blazingly fast compared to most other languages that are widely used for web server development (except, maybe, Java).
It seems, given the end of Moore's "Law", as well as environmental concerns, that language efficiency will get more attention. It'll be interesting to see if languages like Swift, Rust, and Julia can gain traction for web development.
I wonder how uptake has been for IBM Kitura so far...