#It seems that the concurrent of v is much slower than go and rust
1 messages · Page 1 of 1 (latest)
I'm not sure if new spawn keyword instead of go will help
go->spawn is just surface change, preparing for go being used for coroutines (user space threads, scheduled by the runtime, like in Go)
OS threads in any language have ~ the same performance characteristics
that mostly depend on the OS/kernel, not the language and its runtime
Thanks for clarification