On Tuesday, October 23, 2012 3:47:43 PM UTC+2, mmrs151 wrote: > > Hi Tarek, is it not same as Supervisor or upstart, as you are saying they > all are process manager. >
- Circus is a process manager like Supervisord or upstart - Circus also binds sockets, like Gunicorn or Apache or Nginx - Chaussette is a WSGI server with many backends. It can be used on sockets already bound by Circus - Meinheld provides async features - it can be used as a Gunicorn worker *or* through its bundled wsgi web server. Possible stacks: Nginx => Gunicorn => Meinheld and Supervisord It is a very classical stack in the Py world and Supervisor manages Gunicorn which in turn manage meinheld workers. Nginx => Circus => Chaussette+Meinheld It is quite similar to the orevious except that we have a single tool to manage all the processes of the stack (Circus) Cheers Tarek -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/4m9vTy-ndIwJ. 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/django-users?hl=en.

