DEV Community

Discussion on: Go for Java developers (or is the Java concurrency that bad?!)

Collapse
 
jervine791 profile image
john ervine

Just curious but whats more performant?

I also think the lines between concurrency and parallism are blurred here. Yes, the goroutines are allocated a thread of execution but CSP is synchronise and blocking by nature. You can only put something on the channel if the consumer is ready to accept it.