I am new to Django. I am building a app which will have to handle several concurrent requests. Which web server is suitable for this? I have read that Apache's performance degrades on high load.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/4b0d96b1-76b8-4068-92e2-cbdbdc55e609%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I am new to Django. I am building a app which will have to handle several concurrent requests. Which web server is suitable for this? I have read that Apache's performance degrades on high load.
>I have read that
> Apache's performance degrades on high load.
That is absolute nonsense.
Cheers
Tom
If you get enough traffic to trounce a (web server of choice) installation, you probably are making enough money to hire an expert with that system to tune it properly or recommend adding additional resources.
Don't get bogged down in Apache vs. Nginx vs. uWSGI, etc. You're nowhere near that point if you're asking that question.
The web server platform is usually not the cause of site slowness, especially if it is tuned correctly (number of worker threads, memory allocation, etc.). Optimizing the application itself normally provides the largest gains.
The three most common configurations I've seen are using Apache/mod_wsgi, Nginx/uWSGI, and Gnuicorn. All have varying degrees of difficulty, strengths, extended functionality (ie allowing configuration via environment variables for things like your SECRET_KEY), documentation, and support.
Research all of them and determine either a) the one that is easiest to implement/configure/maintain/secure for you and b) whether your site warrants the extra work of doing so rather than using a pre-built environment such as Heroku.
Of course, the Django docs have recommendations:
https://docs.djangoproject.com/en/dev/howto/deployment/
-James
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b1943895-42a8-4472-b11f-ec92a7120b65%40googlegroups.com.
My main reason for recommending nginx is the config file, they are simpler than apache,
when developing an application you shouldn't spend much time configuring the web server,
only after you reached so much traffic that it would make sense to spend time with it
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFHbX1KEVRM6WU7OCcLRSkJhpMS%2BfHpd7%2BWo7LO8XcEt8_f0Nw%40mail.gmail.com.
Cheers
Tom
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFHbX1Kekp9cNqqcZPjxfpWgGS%2BxGhuaaE9VT35Hd79S%3Dv8kbg%40mail.gmail.com.