What are Goroutines?

Technology CommunityCategory: GolangWhat are Goroutines?
VietMX Staff asked 3 years ago

Goroutines are functions or methods that run concurrently with other functions or methods. Goroutines can be thought of as light weight threads. The cost of creating a Goroutine is tiny when compared to a thread. Its common for Go applications to have thousands of Goroutines running concurrently.