Ruby Weekly is a weekly newsletter covering the latest Ruby and Rails news.

Rails server + dispatcher benchmarks

By Peter Cooper / June 9, 2006

maiha from #caboose ran some benchmarks and produced this graph of 'requests per second' for a basic app under different dispatcher setups (Apache, lighttpd, Mongrel, etc.):

Rails-Deployer-Benchmarks

It shouldn't be taken as definitive (the Litespeed + lighttpd time seems suspicious to me), but it definitely demonstrates the power of lighttpd and Mongrel.

Comments

  1. Doug says:

    I'd like to see some more information about the setups here. Maybe I'm just confused how lighttpd can serve a rails app. Is that using straight cgi? fcgi? Or some other ruby loader?

    This is a very welcome report and I'd like to see some more details on how to repeat the test for my apps.

  2. Peter Cooper says:

    Lighttpd and FastCGI is a common combination when serving Rails apps (although I don't use it myself). Most of the major Rails apps use it for its speed and reliability (Apache is just a mega pain as I constantly discover). :) I'll ask maiha if he has any more info.

  3. Alex Staubo says:

    When will developers learn statistics?

    First of all, means are useless as a single value to represent a distribution of values, especially in a case such as this when Ruby's frequent garbage-collection hiccups are going to skew the numbers. What are these means, anyway? Arithmetic means of the whole population?

    In addition to the arithmetic mean you need a sense of the statistical dispersion: standard deviation and interquartile range are two good numbers to use, and you also want to know the range of values. These numbers can all be plotted in a nice box chart or candlestick chart that will beat coloured bars any day.

    Secondly, there is no information here about population sizes, testing methodology, whether a pre-run was performed for each test, etc.

  4. Peter Cooper says:

    Alex: Hey, don't shoot the messenger :) In any case, flawed benchmarking is still reasonably descriptive as long as the flaws are consistent from reading to reading. These aren't absolute numbers, just very rough comparisons. Not particularly scientific, just backing up some anecdotal evidence. I don't think maiha did it for them to be picked apart too much but I considered his findings interesting.

    So yeah, ApacheBench type statistics would certainly be extremely useful for the hard and definitive benchmarks, but until someone is willing to do all of that, we'll go off of unscientific, rough and ready comparisons to get a feel for it.

    I would certainly love to be able to link to, and present, a more scientific study, of course.

  5. Antonin AMAND says:

    What about Apache2 + FCGID ??

Other Posts to Enjoy

Twitter Mentions