What problem does it solve?
Helps teams identify and resolve slow queries, inefficient execution plans, and configuration issues that cause high latency and poor database performance.
Core Features & Use Cases
- Execution Plan Analysis: Interpret EXPLAIN / EXPLAIN ANALYZE output to find cardinality estimation errors, expensive joins, and I/O hotspots.
- Index & Schema Strategy: Recommend B-tree, partial, covering, GIN/GiST, and expression indexes, including ordering and include-column guidance.
- Tuning & Maintenance: Advise PostgreSQL and MySQL configuration changes, autovacuum/vacuum strategies, partitioning, and index maintenance.
- Use Case: Triage a production slow query by analyzing pg_stat_statements or slow query logs, designing targeted indexes, and validating improvements with before/after metrics.
Quick Start
Analyze the provided EXPLAIN ANALYZE output and recommend specific index changes, query rewrites, and validation queries to measure improvement.