Django DB Performance
Use this as the orchestration skill for Django database performance work. Start with measured evidence, reproduce the slow path, and route to the smallest optimization that changes the measured bottleneck.
Core Workflow
Capture the symptom.
- Identify the exact endpoint, command, task, report, or queryset.
- Record current wall-clock time, query count, slow SQL, database backend, data volume, and Django version.
- Keep the original request parameters or fixture that reproduces the issue.
Profile before changing code.
- Use APM traces, database slow-query logs, Django Debug Toolbar,
connection.queries, or targeted logging. - If the expensive query is known, use
QuerySet.explain()or databaseEXPLAIN. - For API endpoints, profile serializers and permission checks as well as querysets.
- Use APM traces, database slow-query logs, Django Debug Toolbar,
Classify the dominant problem.
- Many repeated similar queries: use
django-orm-query-optimization. - One or two expensive SQL statements: use
django-query-plan-readinganddjango-index-design. - Large memory use or long loops over querysets: use
django-queryset-batch-processing. - Python loops computing counts, totals, flags, or latest related rows: use
django-db-side-computation. - Slow aggregate/report query that is acceptable when stale: use
django-materialized-views. - Slow or inconsistent list pages: use
django-pagination-performance. - Unclear evidence: use
django-query-profiling.
- Many repeated similar queries: use
Apply one change at a time.
- Prefer the narrowest change with a clear expected effect.
- Avoid adding indexes, prefetches, or materialized views speculatively.
- Confirm that the optimization helps real production-like data, not only tiny fixtures.
Verify and document the result.
- Re-run the same request or command with the same parameters.
- Compare query count, total DB time, wall-clock time, memory, and query plan.
- Keep before/after evidence in the PR or final report.
See diagnostic-flow.md for routing checklists, common symptoms, and before/after evidence templates.
Modern Django Notes
- Prefer
QuerySet.explain()for ORM query plans before dropping to rawEXPLAIN. - Prefer native Django/PostgreSQL migration operations such as
AddIndexConcurrentlyover hand-written concurrent index SQL when they fit. - Prefer ORM expressions,
Subquery,Exists,Window,GeneratedField, anddb_defaultwhen they make database work explicit and portable enough. - Treat every backend-specific optimization as conditional on the project database. PostgreSQL patterns do not automatically apply to MySQL, MariaDB, SQLite, or Oracle.
Verification
- Show the slow path is still functionally correct.
- Show the measured bottleneck improved.
- Show the optimization did not create a worse query, stale data bug, write-path regression, or memory spike.
Source: hashgraph-online/awesome-codex-plugins → plugins/LVTD-LLC/skills/skills/django-db-performance/SKILL.md