iMasters.com - Knowledge for Developers.
Follow Us

go

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

Why I like Go’s error handling

One of the most controversial issues in the Go language is how to handle errors. I remember when I started working with the...

Backend

What is SOLID?

SOLID is an acronym that stands for five principles in object-oriented software design: Single ResponsabilityOpen-ClosedLiskov SubstitutionInterface SegregationDependency Inversion Principle Although Go is not...

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