Operation 125140
SELECT id, name, email FROM users WHERE id = ?
- Operation Type
sql
- Duration
- 17.0 ms
- Request Impact
- 1.3% of total request time
- Occurred At
- Sep 09, 2026 9:42 PM
- SQL Analysis
- Normal query (<100 ms)
- Performance Comparison
-
Average: 18.2ms
95th Percentile: 34.0ms
Based on 1000 recent operations - Related Operations
-
5 similar operations in this request
Potential N+1 query pattern detected - Optimization Tips
-
Add single_column index: add_index :users, :id - Fast lookups for id = value queriesAdd covering index: add_index :users, ["id", "name", "email"], name: 'covering_idx_users_id' - Index-only scan without table accessIndex Optimization - Review indexes on the 'users' table. Consider composite indexes for WHERE clauses.