Why can't django load multiple pages simultaneously?
I have a django aplication with an admin panel. When i add some item (it takes about 10 seconds to add it), i can't load any other page. The page is waiting for the first page to load,开发者_如何学运维 and then it load itself.
Are you using the development server? It's single-threaded by design. You'll need to run your Django app in a real web server (like Apache) to load pages simultaneously.
As Bob points out, the devserver/runserver is single-threaded, but if you want to, there is a multi-threaded local dev server option
精彩评论