Open jace opened 6 years ago
Views that use load_models should be migrated to using the far more efficient ModelView. This applies (at least) to the organization management views, where querying by Organization.name generates a grossly inefficient query.
load_models
ModelView
Organization.name
Also applies to the Client model views.
Partially fixed in #270. Organizations are now converted. Clients are pending.
Views that use
load_models
should be migrated to using the far more efficientModelView
. This applies (at least) to the organization management views, where querying byOrganization.name
generates a grossly inefficient query.