[Fixed]-Extra long loading time on Angular/django app

1👍

You need to first exclude the fact that it’s your code that made the performance suffers. To debug the performance of django projects, use django-debug-toolbar in your dev environment.

There are too many other facts that could also slow down your website, the instance you use might not be performant enough to handle the traffic, or you are doing some backend process in crontab that eats up the resource, or your database is not optimized, or you simply didn’t configure web server correctly, etc.

You might need to login into the box and check the memory/cpu/disk usage to determine where the bottleneck is, then try to improve that. There’s no straight answer for that, hope it helps.

Leave a comment