Hello everyone! 👋
I’ve had to work with RocksDB recently and in order to use it from Golang I had to jump a few hops before getting it to work properly.
Introduction
#
Hello everyone! 👋
In this article I’ll present you the options pattern in Golang. The pattern is useful when you want to create a function that takes different parameters as an option.
Hi 👋
In this article we’ll talk about the Object Pool pattern in Golang.
The Object Pool pattern is a design pattern used in situations when constructing objects is a costly operation, for example building an HTTPClient or DatabaseClient object can take some time.
Hi 👋,
In this article I want to show a testing tip that I’ve recently learned myself by reading Software Engineering at Google: Lessons Learned from Programming Over Time. The technique improved the way I write unit tests.