about go keyword #17491
Unanswered
rraammiinn
asked this question in
Questions and Answers
about go keyword
#17491
Replies: 3 comments 11 replies
-
|
Beta Was this translation helpful? Give feedback.
4 replies
-
coroutines in python refers to asynchronous task ; in go it seems to be threads managed by program ( I'm not sure ) ; now what about v ? |
Beta Was this translation helpful? Give feedback.
6 replies
-
Goroutines are not bound to OS threads, which means that thousands of them can be created without causing any overhead. Goroutines are perfect for concurrent programming, as they can communicate with each other using channels. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
is it used for another purpose ?
Beta Was this translation helpful? Give feedback.
All reactions