Learn the basics of Go and get started writing your own, highly performant Go programs.
-
-
Generics is a programming language paradigm that gives us a way to write code that is not tied to any specific type. It gives us the ability
-
In Go, sync.Cond is a synchronization primitive, though it’s not as commonly used as its siblings like sync.Mutex or sync.WaitGroup. That said, as a Go engineer, you don’t really want to find your...
-
-
It's easy to write inaccurate benchmarks and make wrong assumptions based on them. This blog examines four common and concrete traps leading to inaccuracy.
-
Learn how to write benchmarks and measure execution time and memory allactions of your code.