Operation 234830

SELECT * FROM posts WHERE title LIKE ? AND content LIKE ? AND LOWER(title) LIKE ? AND UPPER(content) LIKE ?
Operation Type
sql
Duration
32.0 ms
Request Impact
44.1% of total request time
Occurred At
Sep 17, 2026 6:28 AM
SQL Analysis
Normal query (<100 ms)
Performance Comparison
Average: 17.9ms
95th Percentile: 34.0ms
Based on 1000 recent operations
Related Operations
1 similar operation in this request
Optimization Tips
Use includes() to eager load associations - Eliminate N+1 queries and reduce database load
Use joins() when you only need to filter, not access associated data - Eliminate N+1 queries and reduce database load
Use preload() when you don't need to query on associations - Eliminate N+1 queries and reduce database load
Add composite index: add_index :posts, ["title", "content"] - Efficient multi-column filtering
Specify only needed columns instead of SELECT * - Reduced memory usage and faster data transfer
Index Optimization - Review indexes on the 'posts' table. Consider composite indexes for WHERE clauses.