2008/11/25 Frédéric Sidler <[EMAIL PROTECTED]>:
> Upgraded to 2.3. Thank you for the links and the information.
> Graham, I also read the thread regarding the basic configuration and the
> fine tuning. Is there a rule for         WSGIDaemonProcess example
> user=example group=example threads=?? maximum-requests=??
> All I can say is that we are using EC2 on small instance for a Django
> application. I understood that these number should be relative to your
> context, but does a basic rule exist ?

If you are using WSGIDaemonProcess, then just go with the default
values for processes/threads, which is single process and 15 threads.
This would be more than adequate for small to medium sites. There is
no need for maximum-requests unless your application has creeping
memory usage which you can't track down reason for. So, to start with
just use:

  WSGIDaemonProcess example user=example group=example
  WSGIProcessGroup example

and don't worry about the rest. You will probably go a long way before
you start to need to consider fiddling it.

Graham

>
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/modwsgi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to