iMasters.com - Knowledge for Developers.
Follow Us
Home golang

golang

Backend

How to implement a function using context

In this post, we will implement a function that uses context. In the calling example, I will use the WithTimeout context. In this...

Backend

How to fuzz test for HTTP requests (part 1)

At the 2022 edition of GopherCon Brasil, I had the pleasure of speaking about the Fuzz Test. It was cool because during the...

Backend

How to solve memory leaks in maps

One of the most common ways to cache Go applications is by using a map. If you already did this, you may have...