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
I was profiling import time in a project using django-modeltrans after reading https://adamj.eu/tech/2023/03/02/django-profile-and-improve-import-time/, while I noticed the time it takes to import a forms module containing a form based on TranslationModelForm is somewhat excessive, replacing the use of TranslationModelForm by ModelForm reduced the import time by a factor 3.
The text was updated successfully, but these errors were encountered:
I was profiling import time in a project using django-modeltrans after reading https://adamj.eu/tech/2023/03/02/django-profile-and-improve-import-time/, while I noticed the time it takes to import a forms module containing a form based on
TranslationModelForm
is somewhat excessive, replacing the use ofTranslationModelForm
byModelForm
reduced the import time by a factor 3.The text was updated successfully, but these errors were encountered: