Hal Murray via devel <devel@ntpsec.org>:
> Do you have any data on Go GC times?

Yes. They're pretty miniscule. Most Go GC is performed concurrently
with normal program execution, except for one stop-the-world phase
that typically runs on the close order of 1ms for real production
programs.

https://medium.com/servicetitan-engineering/go-vs-c-part-2-garbage-collection-9384677f86f1

"Nearly all STW pauses in Go are really sub-millisecond ones. If you
look more real-life test case (see e.g. this file), you’ll notice that
16GB static set on a ~ regular 16-core server implies your longest
pause = 50ms (vs 5s for .NET), and 99.99% of pauses are shorter than
7ms (92ms for .NET)!"
-- 
                <a href="http://www.catb.org/~esr/";>Eric S. Raymond</a>


_______________________________________________
devel mailing list
devel@ntpsec.org
https://lists.ntpsec.org/mailman/listinfo/devel

Reply via email to