Performance

thumbnail

Technologies used by Coder.Today

A quick intro to the stack behind coder.today as an website.

thumbnail

Profiling your Golang app in 3 steps

Intro to profiling Go apps or packages. To keep it short I will only focus on the computational optimizations.

HOT
thumbnail

Fast priority queues in Golang: Hierarchical Heap

Hierarchical Heap is a very efficient Priority Queue O(log n/k) for large data sets.

thumbnail

Fast priority queues in Golang: Hierarchical Queue

Writing O(1) high performance data structures, in order to learn Go.