How do I deal with long load times?

Find out more about loading and what you can do to mitigate.

Sometimes when you're building, you'll get to a feature that's taking too long to display info. This is a pretty ordinary issue when developing apps. To keep your app usable, you'll need to improve the speed.

Your first step is to run a profiler so you can diagnose where the load issue is coming from. It's important to find out if your problem is the frontend or the backend.

If it's the frontend, take a look at the library load order and the loading and rendering methods (inefficient code is usually to blame).

If it's the backend, then you'll want to optimize the Django query being used.