Golang Performance
by @samber
Golang performance optimization patterns and methodology - if X bottleneck, then apply Y. Covers allocation reduction, CPU efficiency, memory layout, GC tuni...
clawhub install golang-performanceπ About This Skill
name: golang-performance description: "Golang performance optimization patterns and methodology - if X bottleneck, then apply Y. Covers allocation reduction, CPU efficiency, memory layout, GC tuning, pooling, caching, and hot-path optimization. Use when profiling or benchmarks have identified a bottleneck and you need the right optimization pattern to fix it. Also use when performing performance code review to suggest improvements or benchmarks that could help identify quick performance gains. Not for measurement methodology (see golang-benchmark skill) or debugging workflow (see golang-troubleshooting skill)." user-invocable: true license: MIT compatibility: Designed for Claude Code or similar AI coding agents, and for projects using Golang. metadata: author: samber version: "1.1.2" openclaw: emoji: "ποΈ" homepage: https://github.com/samber/cc-skills-golang requires: bins: - go - benchstat install: - kind: go package: golang.org/x/perf/cmd/benchstat@latest bins: [benchstat] allowed-tools: Read Edit Write Glob Grep Bash(go:*) Bash(golangci-lint:*) Bash(git:*) Agent WebFetch Bash(benchstat:*) Bash(fieldalignment:*) Bash(staticcheck:*) Bash(curl:*) Bash(fgprof:*) Bash(perf:*) WebSearch AskUserQuestion
Persona: You are a Go performance engineer. You never optimize without profiling first β measure, hypothesize, change one thing, re-measure.
Thinking mode: Use ultrathink for performance optimization. Shallow analysis misidentifies bottlenecks β deep reasoning ensures the right optimization is applied to the right problem.
Modes:
Go Performance Optimization
Core Philosophy
1. Profile before optimizing β intuition about bottlenecks is wrong ~80% of the time. Use pprof to find actual hot spots (β See samber/cc-skills-golang@golang-troubleshooting skill)
2. Allocation reduction yields the biggest ROI β Go's GC is fast but not free. Reducing allocations per request often matters more than micro-optimizing CPU
3. Document optimizations β add code comments explaining why a pattern is faster, with benchmark numbers when available. Future readers need context to avoid reverting an "unnecessary" optimization
Rule Out External Bottlenecks First
Before optimizing Go code, verify the bottleneck is in your process β if 90% of latency is a slow DB query or API call, reducing allocations won't help.
Diagnose: 1- fgprof β captures on-CPU and off-CPU (I/O wait) time; if off-CPU dominates, the bottleneck is external 2- go tool pprof (goroutine profile) β many goroutines blocked in net.(*conn).Read or database/sql = external wait 3- Distributed tracing (OpenTelemetry) β span breakdown shows which upstream is slow
When external: optimize that component instead β query tuning, caching, connection pools, circuit breakers (β See samber/cc-skills-golang@golang-database skill, Caching Patterns).
Iterative Optimization Methodology
The cycle: Define Goals β Benchmark β Diagnose β Improve β Benchmark
1. Define your metric β latency, throughput, memory, or CPU? Without a target, optimizations are random
2. Write an atomic benchmark β isolate one function per benchmark to avoid result contamination (β See samber/cc-skills-golang@golang-benchmark skill)
3. Measure baseline β go test -bench=BenchmarkMyFunc -benchmem -count=6 ./pkg/... | tee /tmp/report-1.txt
4. Diagnose β use the Diagnose lines in each deep-dive section to pick the right tool
5. Improve β apply ONE optimization at a time with an explanatory comment
6. Compare β benchstat /tmp/report-1.txt /tmp/report-2.txt to confirm statistical significance
7. Repeat β increment report number, tackle next bottleneck
Refer to library documentation for known patterns before inventing custom solutions. Keep all /tmp/report-*.txt files as an audit trail.
Decision Tree: Where Is Time Spent?
| Bottleneck | Signal (from pprof) | Action |
| --- | --- | --- |
| Too many allocations | alloc_objects high in heap profile | Memory optimization |
| CPU-bound hot loop | function dominates CPU profile | CPU optimization |
| GC pauses / OOM | high GC%, container limits | Runtime tuning |
| Network / I/O latency | goroutines blocked on I/O | I/O & networking |
| Repeated expensive work | same computation/fetch multiple times | Caching patterns |
| Wrong algorithm | O(nΒ²) where O(n) exists | Algorithmic complexity |
| Lock contention | mutex/block profile hot | β See samber/cc-skills-golang@golang-concurrency skill |
| Slow queries | DB time dominates traces | β See samber/cc-skills-golang@golang-database skill |
Common Mistakes
| Mistake | Fix |
| --- | --- |
| Optimizing without profiling | Profile with pprof first β intuition is wrong ~80% of the time |
| Default http.Client without Transport | MaxIdleConnsPerHost defaults to 2; set to match your concurrency level |
| Logging in hot loops | Log calls prevent inlining and allocate even when the level is disabled. Use slog.LogAttrs |
| panic/recover as control flow | panic allocates a stack trace and unwinds the stack; use error returns |
| unsafe without benchmark proof | Only justified when profiling shows >10% improvement in a verified hot path |
| No GC tuning in containers | Set GOMEMLIMIT to 80-90% of container memory to prevent OOM kills |
| reflect.DeepEqual in production | 50-200x slower than typed comparison; use slices.Equal, maps.Equal, bytes.Equal |
Deep Dives
CI Regression Detection
Automate benchmark comparison in CI to catch regressions before they reach production. β See samber/cc-skills-golang@golang-benchmark skill for benchdiff and cob setup.
Cross-References
samber/cc-skills-golang@golang-benchmark skill for benchmarking methodology, benchstat, and b.Loop() (Go 1.24+)samber/cc-skills-golang@golang-troubleshooting skill for pprof workflow, escape analysis diagnostics, and performance debuggingsamber/cc-skills-golang@golang-data-structures skill for slice/map preallocation and strings.Buildersamber/cc-skills-golang@golang-concurrency skill for worker pools, sync.Pool API, goroutine lifecycle, and lock contentionsamber/cc-skills-golang@golang-safety skill for defer in loops, slice backing array aliasingsamber/cc-skills-golang@golang-database skill for connection pool tuning and batch processingsamber/cc-skills-golang@golang-observability skill for continuous profiling in production