does it have goroutine termination, i recently found out you need a runtime patch for it
The rule is to start a goroutine only if you know how it will end.
A goroutine that has to be killed (no other way to tell it to stop) is a bug.
What exactly do you mean by "goroutine termination"?
The rule is to start a goroutine only if you know how it will end.
A goroutine that has to be killed (no other way to tell it to stop) is a bug.