We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For https://github.com/compserv/hknweb/blob/master/hknweb/forms.py#L243
Currently each user creation is separate in a for loop, which is a single query per user, very slow. Try https://docs.djangoproject.com/en/4.1/ref/models/querysets/#bulk-create for bulk creation of users to speed this up to avoid timeout.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For https://github.com/compserv/hknweb/blob/master/hknweb/forms.py#L243
Currently each user creation is separate in a for loop, which is a single query per user, very slow. Try https://docs.djangoproject.com/en/4.1/ref/models/querysets/#bulk-create for bulk creation of users to speed this up to avoid timeout.
The text was updated successfully, but these errors were encountered: