| Author |
Which Rails web server?
|
Leandro Coutinho
Ranch Hand
Joined: Mar 04, 2009
Posts: 415
|
|
Hi.
What web server do you use? Is it as good as Apache Tomcat? Can it handle high traffic?
Thank you.
|
 |
Sumit Bisht
Ranch Hand
Joined: Jul 02, 2008
Posts: 302
|
|
For development : mongrel, which is single threaded & lightweight
For deployment : Passenger running on apache (most web hosting providers provide this) or nginx web server.
If you are looking for scalability, I'd suggest Heroku or Rackspace cloud as scaling is done behind the scenes by them.
In Ruby, performance management is something that is generally best left to container. Unlike java, not much tweaking is possible, but loosely speaking, performance of the rails apps. have been satisfactory with medium-high traffic usage.
|
 |
 |
|
|
subject: Which Rails web server?
|
|
|