Paulo
An important use case is when packaging your app in a container for deployment in Kubernetes or Google Cloud Run, for e.g..
Compared to an app written in Php where you have to package the framework code into the container, the same app
rewritten in Go reduces the size by a huge amount as the only thing you need to include in a scratch base image is the binary plus
some certificates.
Also, the memory requirement to run the app is much less.
One of my app's size was reduced from 600Mb(php) down to 20Mb(Go)!!
Also, memory requirement reduced from 1024Mb to 128Mb on Google Cloud Run, thus saving a lot of money!
Merson