On Friday, 2 October 2015 at 01:21:15 UTC, rsw0x wrote:
No, no it's not. Go's GC has a massive overhead because it's intended to have low latency because that's what Go programs typically require.
Go's GC is actually pretty slow by design.

Low latency (also a synonym for fast) is required by interactive applications like client and server software, not by Go itself. Partially interactive data processing programs like compilers prefer optimization for total execution time. GC improvements can show in both scenarios, can depend on usage profile.

Reply via email to