Add comprehensive benchmarks for hot paths with allocation tracking #1449
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR implements comprehensive performance benchmarks for Asherah's critical hot paths with detailed memory allocation tracking. The benchmarks are designed to detect performance regressions and guide optimization efforts for production deployments.
Hot Path Benchmarks Added
Concurrent Benchmarks Added
Key Features
✅ Allocation tracking: All benchmarks use
b.ReportAllocs()for detailed memory profiling✅ Realistic workloads: 1KB standard payloads, 64KB for memory pressure testing
✅ Import cycle safe: Custom minimal mock implementations avoid dependency issues
✅ Production patterns: Benchmarks mirror real-world usage scenarios
✅ Concurrent testing: Both single-threaded and multi-threaded workloads
Sample Results
Testing
Test plan
go test -bench=Benchmark -benchtime=1sto verify all benchmarks executego test ./...to ensure no regressionsGenerated with Claude Code