-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Audit: Performance
Identify performance issues and optimization opportunities.
Database Performance
- N+1 Queries - Eager loading missing?
- Missing Indexes - Slow query analysis
- Large Result Sets - Pagination missing?
- Inefficient Joins - Query optimization
- Connection Pooling - Configured correctly?
Memory Usage
- Memory Leaks - Unbounded growth
- Large Object Loading - Streaming instead?
- Cache Efficiency - Hit rates, eviction
- Garbage Collection - GC pressure
Concurrency
- Blocking Operations - I/O in main thread
- Lock Contention - Mutex bottlenecks
- Thread Pool Sizing - Appropriate?
- Async Opportunities - Parallelizable work
API Performance
- Response Times - P50, P95, P99
- Payload Sizes - Compression, pagination
- Caching Headers - ETags, Cache-Control
- Rate Limiting - Prevents overload?
Build/Deploy Performance
- Build Time - Can be parallelized?
- Asset Size - Bundle optimization
- Cold Start - Initialization time
Output
Save to AUDIT-PERFORMANCE.md
Include specific metrics and benchmarks where possible.