The myth of Go garbage collection hindering "real-time" software?

by sbmthakuron 10/9/2023, 7:22 PMwith 1 comments

by eschneideron 10/9/2023, 7:37 PM

GC, almost any GC, is a no-go for hard real-time systems where memory total memory usage AND performance must be known. When you are in situations where you absolutely MUST process X messages in Y timeframe, even something simple like calling malloc() is no-go because the runtime isn't known.