On Wed, Dec 1, 2010 at 6:43 AM, ashdesigner <antony.shash...@gmail.com> wrote: > The only undiscovered issue to us is whether we can launch a heavy > loaded website in Django under Windows (IIS) + MSSQL. Would appreciate > any comment please.
a WSGI plugin for IIS would be the best answer; but there's nothing wrong with FastCGI. properly managed can sustain as high load as anybody else. unfortunately, the most common FastCGI->WSGI adapter (flup) is quite good and performant; but limited in terms of dynamic process/thread lifetime managing. a more 'modern' approach could be gunicorn or Tornado. since both of them handle HTTP->WSGI, your IIS frontend would have to proxy those requests, but i guess that's a standard feature of any webserver -- Javier -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.