Is python2 dead?
Eric S. Raymond
esr at thyrsus.com
Fri Sep 15 09:34:35 UTC 2023
Hal Murray via devel <devel at 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>
More information about the devel
mailing list