django-dynamic-model
django-dynamic-model copied to clipboard
Inefficient schema retrieval on model instantiation
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.