views:

45

answers:

1

My friend says that Django only has 1 thread or something?

And I have to edit my 000-default in order to add more processes? He suggests 4 or 5.

What exactly is this, and what do I have to do?

Thanks, I'm a noob.

+3  A: 

Use the WSGIDaemonProcess directive to put the app in daemon mode and specify the number of daemon processes and threads.

Ignacio Vazquez-Abrams
Read 'http://code.google.com/p/modwsgi/wiki/ProcessesAndThreading' to understand more about process/threading model. Also see example for daemon mode at end of 'http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide'.
Graham Dumpleton