The author concludes that the overhead required for managing the goroutines outweighs the benefits of more concurrent workers at some point. An application must be optimized for the number of cores in the environment to ensure maximum efficiency.
Takeaways:
- Concurrency can improve performance for CPU-bound jobs.
- Keep in mind memory usage when increasing concurrent workers.
- An application must be optimized for the number of cores in the environment to ensure maximum efficiency.
- The overhead required for managing the goroutines outweighs the benefits of more concurrent workers at some point.
















