Cover image for Merge Sort using Goroutines
Programming 702 words 4 min

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.
Cover image for Goroutine vs Simple function
Programming 1257 words 6 min

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.
Cover image for How to optimize a Go deployment with Docker
Programming 617 words 3 min

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.
1
2