How to Improve Slice Performance in Go
If you are initiating a new slice and you know how many items you will put into it, then use the make() function: data :=… Read More »How to Improve Slice Performance in Go
If you are initiating a new slice and you know how many items you will put into it, then use the make() function: data :=… Read More »How to Improve Slice Performance in Go
If you need to iterate over a map in golang but you want to have only the keys or only the values then this snippet… Read More »Golang: Iterating Over Maps | Only Keys, Only Values, Both
Is there a chance to catch the termination (or interruption) signals and do some tasks before quitting the app in golang? YES! Just use this… Read More »Easy How to Catch Signals and Gracefully Shutdown in Golang!