Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sumit-kushwah/mastering-go
https://github.com/sumit-kushwah/mastering-go
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sumit-kushwah/mastering-go
- Owner: sumit-kushwah
- Created: 2024-05-10T03:20:42.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-05-20T03:55:23.000Z (6 months ago)
- Last Synced: 2024-05-20T04:40:49.521Z (6 months ago)
- Language: Go
- Size: 1.11 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Mastering Go Concurrency
### Current Understanding
**Channels**These are of two types buffered and unbuffered, buffered channel have size and unbuffered has no size. They are mainly used to communicate between go routines since go routine function can't return any value.
**WaitGroup**
Helps in maintaining the go routines.