←back to thread

480 points jedeusus | 6 comments | | HN request time: 0.305s | source | bottom
1. ljm ◴[] No.43540889[source]
You're not really writing 'Go' anymore when you're optimising it, it's defeating the point of the language as a simple but powerful interface over networked services.
replies(4): >>43541337 #>>43542091 #>>43544202 #>>43544292 #
2. jrockway ◴[] No.43541337[source]
Why? You have control over the parts where control yields noticeable savings, and the rest just kind of works with reasonable defaults.

Taken to the extreme, Go is still nice even with constraints. For example, tinygo is pretty nice for microcontroller projects. You can say upfront that you don't want GC, and just allocate everything at the start of the program (kind of like how DJB writes C programs) and writing the rest of the program is still a pleasant experience.

replies(1): >>43549833 #
3. emmelaich ◴[] No.43542091[source]
I think you have a point that there's generic advice for optimising: don't.

i.e. Make it simple, then measure, then make it fast if necessary.

Perhaps all this is understood for readers of the article.

4. mariusor ◴[] No.43544202[source]
I think at least some of the patterns shared in the document, using zero-copy, ordering struct properties are all very idiomatic. Writing code in this manner is writing good Go code.
5. Cthulhu_ ◴[] No.43544292[source]
What do you mean? If you don't want that level of control over e.g. memory allocation, registries, cache lines etc, there's higher level languages than Go you can pick from, e.g. Java / C# / JS.
6. ashf023 ◴[] No.43549833[source]
100%. I work in Go and use optimizations like the ones in the article, but only in a small percentage of the code. Go has a nice balance where it's not pessimized by default, and you can just write 99% of code without thinking about these optimizations. But having this control in performance critical parts is huge. Some of this stuff is 10x, not +5%. Also, Go has very good built-in support for CPU and memory profiling which pairs perfectly with this.