Adding link to concurrency faster post

This commit is contained in:
Teiva Harsanyi 2022-09-14 13:28:45 +02:00
parent d9bfd05729
commit 66b5298254
No known key found for this signature in database
GPG key ID: 421EF65C3FD2F93C

View file

@ -264,7 +264,7 @@ In many cases, you shouldnt ignore an error returned by a `defer` function. E
Understanding the fundamental differences between concurrency and parallelism is a cornerstone of the Go developers knowledge. Concurrency is about structure, whereas parallelism is about execution.
#### Thinking concurrency is always faster (#56)
#### [Thinking concurrency is always faster](https://teivah.medium.com/concurrency-isnt-always-faster-in-go-de325168907c) (#56)
To be a proficient developer, you must acknowledge that concurrency isnt always faster. Solutions involving parallelization of minimal workloads may not necessarily be faster than a sequential implementation. Benchmarking sequential versus concurrent solutions should be the way to validate assumptions.