You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Django supports Model indexing, which allows for optimizing certain queries as explained here.
Some Tin queries are slow. The most notable example is submissions.Submission, which currently has >340,000 rows in production. Below are a few potentially-optimizable queries for the submissions app:
Implementing indexing may (or may not) improve the performance of these queries, and this must be tested thoroughly to ensure real performance improvements.
The text was updated successfully, but these errors were encountered:
Django supports Model indexing, which allows for optimizing certain queries as explained here.
Some Tin queries are slow. The most notable example is
submissions.Submission
, which currently has >340,000 rows in production. Below are a few potentially-optimizable queries for thesubmissions
app:Implementing indexing may (or may not) improve the performance of these queries, and this must be tested thoroughly to ensure real performance improvements.
The text was updated successfully, but these errors were encountered: