Golang Concurrency

What is main point of Golang? I’ve no idea about golang concurrency, if anyone know the answer. Please help me. thanks

Making long story short, unlike clasical threads, Go language implement a kind a cheap routines named goroutines, software managed by the runtime which can run concurently and allow you to make many tasks almost simoultaneus. The concurency its like in any language but here is more cheaper (if not the cheapest) an you can afford to run tens of thousands tasks concurently in a very easy way.

1 Like

The Go homepage says this about the “main point of Golang:”

Go is an open source programming language that makes it easy to build simple , reliable , and efficient software.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.