Merge Sort using Goroutines
This is a simple example of how to use goroutines to parallelize a merge sort algorithm.
We compare the performance of a simple merge sort algorithm with a parallel merge sort algorithm that uses goroutines.
Goroutine vs Simple function
This is a simple example of why goroutines might be overkill for some tasks and less efficient than a simple function.
How to optimize a Go deployment with Docker
In this article, I will present the different steps that led me to optimize the deployment of services in golang
using docker.