/awesome-go-perf

A curated list of Awesome Go performance libraries and tools

Creative Commons Zero v1.0 UniversalCC0-1.0

Awesome Go performance

Collection of the Awesome™ Go libraries, tools, project around performance.

Contents

Assembly

Benchmarks

  • benchstat - Benchstat computes and compares statistics about benchmarks.
  • go-benchrun - Convenience wrapper around "go test" + "benchstat".

Concurrency

  • grmon - Command line monitoring for goroutines.
  • drwmutex - Distributed RWMutex in Go.

GC

  • gcnotifier - Know when GC runs from inside your golang code.

Hardware

  • klauspost/cpuid - Provides information about the CPU running the current program.

IO

Math

  • fastdiv - Fast division, modulus and divisibility checks in Go for divisors known only at runtime.

Profiling

  • profefe - Continuous profiling data collecting.

Storage

  • stringbank - Storing strings without GC overhead.

Testing

Articles

Other