|
|
|
|
|
by sievebrain
3724 days ago
|
|
They aren't comparable at all. Go doesn't collect incrementally and doesn't compact. So good luck collecting garbage fast enough to keep up with a heap-heavy app (which if you have a 100GB heap, your app probably is). In other words, the issue is not pause time, it's also throughput. And Go users do tune their GC: https://github.com/golang/go/issues/14161 |
|