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
Every time an instance of the model is created, another query is fired up to fetch the schema. If we're getting multiple models (very likely), it's going to fire off O(n) additional querysets, which is pretty lousy performance-wise.
Need to find a good way of caching this metadata and invalidating it.
The text was updated successfully, but these errors were encountered:
Every time an instance of the model is created, another query is fired up to fetch the schema. If we're getting multiple models (very likely), it's going to fire off O(n) additional querysets, which is pretty lousy performance-wise.
Need to find a good way of caching this metadata and invalidating it.
The text was updated successfully, but these errors were encountered: