
除非有必要,否则不要优化程序
Don’t guess where the bottleneck is – use Go profilers for detecting the code to be optimized
不要猜测瓶颈在哪里——使用 Go 分析器来检测要优化的代码
Do not complicate the code for a small performance win
不要为了小的性能改进而将代码复杂化
Write a clear code first, optimize later
先写清楚代码逻辑,再优化
Prefer simpler algorithms and data structures over more complex ones
能用简单的算法和数据结构就不用复杂的
Don’t focus on CPU usage optimization only – there are other optimization types exist
不要只关注 CPU 使用优化——还有其他优化
Try switching to new data structure and algorithm if the previous one doesn’t give the expected performance
如果没有达到预期的性能,请尝试切换到新的数据结构和算法
Don’t chase for big O notation. Simpler algorithms and data structures are usually faster on small inputs
在小数据集上,简单的算法和数据结构通常更快