InterviewSolution
Saved Bookmarks
| 1. |
What is concurrency Golang? |
|
Answer» Generally, large programs are made of many multiple small SUBPROGRAMS. For EXAMPLE, a server handles multiple requests made via web browsers and serves HTML web pages in response. In this case, each request made is considered as a small program. Golang MAKES it possible to RUN smaller components of each of these programs simultaneously through concurrency. It has extensive support for concurrency using goroutines and channels |
|