-
Notifications
You must be signed in to change notification settings - Fork 1
Concurrent Programming With Go
Pritesh Patel edited this page Aug 7, 2019
·
1 revision
https://app.pluralsight.com/library/courses/go-concurrent-programming/
- Go basics PS courses - 'The Go Programming Language' - John Sonmez, 'Creating Web Applications with Go' - Mike Van Sickle
- Concurrent (single thread across multiple tasks), Parallelism (multiple tasks running in parallel)
- Process (O.S. level) -> Thread(s) -> Concurrency control constructs (e.g. mutex)