| name | review-performance |
| description | Performance review checklist for OpenAEV code: N+1 queries, fetch strategy, pagination, indexing, memory usage. Use when reviewing PRs or auditing performance of a feature. |
Performance Review
Procedure
Step 1 — Check for N+1 queries
Step 2 — Check fetch strategy
Step 3 — Check pagination
Step 4 — Check query efficiency
Step 5 — Check database indexing
Step 6 — Check memory usage
Step 7 — Check transaction scope
Step 8 — Report
Document findings using conventional comments format:
issue (blocking): for performance bugs (N+1, missing pagination, unbounded queries)
suggestion (non-blocking): for optimizations (index, fetch strategy, caching)
note: for informational items (acceptable tradeoffs, future improvements)