Hi Jason, Thanks for your help! I just solved the bug.
The reason of the bug is that in the first step after I verify the worker's identification, I should put them in the database. And in django default setting, PASSWORD_HASHERS is set to PBKDF2 to hash the password for each worker. It is a complex algorithm, slowing down the speed to put users in the database. So I change PASSWORD_HASHERS to SHA1P. In this way, the user is put in the database faster, thus the first page is loaded faster. On Tuesday, November 21, 2017 at 9:15:54 AM UTC-5, Jason wrote: > > Does that worker call execute slowly each time you call it? Or is it just > the once? > > I'd copy that URL and try calling it several times with an REST API client > like Postman. Does the request execute that slowly each time you call it, > or is it just the initial call that is slow? > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/34e36052-9c46-4c07-8386-2e21c9633422%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

