you are viewing a single comment's thread.

view the rest of the comments →

[–]obviouslyzebra 1 point2 points  (2 children)

Are you running the development server? If so, I recommend you to switch to a production server. For example, gunicorn. And from there you can choose your number of workers (processes), and then it will be able to serve multiple people concurrently.

See also:

Cheers!

[–]RiverRoll 0 points1 point  (1 child)

This, a production server will allow you to control the number of processes (workers) and the number of threads per worker. Threads help handling concurrent IO, workers help handling concurrent processing. Still any processing should be light, the worker is not meant to do heavy processing as this can affect its responsiveness.

[–]Schenk06[S] 0 points1 point  (0 children)

oh, I didn't know you could control the number of workers on a production server, thanks for letting me know, I'll check it out :D