Using generics for implementing the Object Pool Pattern in Go
Introduction In my previous post I described simple implementation of the Object Pool pattern. In this post I...
Building a web api with Go coroutines
Introduction On this page I described building a simple web API with a Postgres database at the backend....
Design Patterns in Go: Memento or how to undo actions.
Introduction The memento pattern can be used to (partially) expose the internal state of an object. One use...