What is the appserver for production that works best with Rails3?

Hi all,

In development I used webrick, but I suppose I don't want to use that in production. With rails2 I would use mongrel or thin. But as far as I know, mongrel is no longer developed? So are we left to thin these days? Does thin plays nicely with Rails3? What is your latest experience on this?

Thank you very much for the insights.

For production I'd use Passenger (a.k.a. modrails) with Ruby 1.9. Should work fine with Rails3 since it drives the rack interface.

Hi all,

In development I used webrick, but I suppose I don’t want to use that

in production. With rails2 I would use mongrel or thin. But as far as

I know, mongrel is no longer developed? So are we left to thin these

days? Does thin plays nicely with Rails3? What is your latest

experience on this?

Thank you very much for the insights.

For production I’d use Passenger (a.k.a. modrails) with Ruby 1.9.

Should work fine with Rails3 since it drives the rack interface.

DHH recommends Passenger 2.2.9 if you decide to use it with Rails

3.0.

-Conrad

Cool. Thanks for that. I've never heard of it before. I'll try it this weekend.

Regards,