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
It seems the SeedDB prefix listing page lacks proper usage of Django ORM's select_related() and associated calls.
Observing noticably slow page loads on our own internal data sets at Uninett. With over 1500 registered prefixes, debug mode shows more than 4500 executed SQL queries, suggesting that lookups into a couple more tables happen for each Prefix result object.
The text was updated successfully, but these errors were encountered:
This could be a good first issue. It requires a bit of Django and SQL knowledge, and you will need to learn a little bit about the NAV data model and the structure of the SeedDB tool.
It seems the SeedDB prefix listing page lacks proper usage of Django ORM's
select_related()
and associated calls.Observing noticably slow page loads on our own internal data sets at Uninett. With over 1500 registered prefixes, debug mode shows more than 4500 executed SQL queries, suggesting that lookups into a couple more tables happen for each Prefix result object.
The text was updated successfully, but these errors were encountered: