Featured

6 Tips on High Performance Go — Advanced Go Topics

The article aims to discuss 6 tips that could help diagnose and fix performance problems in your Go applications. Benchmarking: Writing effective benchmarks in Go is crucial for understanding the performance of your code. Benchmarks can be created by adding the suffix “_test” to a Go file and using the testing package’s Benchmark function. Here’s an example: In this example, we’re benchmarking the time it takes to calculate the 20th Fibonacci number....

April 26, 2023 · 6 min · 1166 words · David Lee