vote up 4 vote down star
1

What is the difference between Mongrel and WEBrick?

Which one should I use?

Why does Rails ship with both?

flag

63% accept rate
I updated my comment per your request. New to SO, so I'm not sure if you get updated on comments on answers. – wesgarrison Mar 2 at 5:26

4 Answers

vote up 12 vote down check

For your local development, they'll both work. Mongrel is faster, more efficient, and stable. Some people (myself included) use it to host their production sites, even. Certainly okay for local development.

If you're on non-Windows, I'd suggest looking at Phusion Passenger. You can support multiple apps on your localhost without having to do a 'ruby script/server' every time you want to run something.

When running Phusion Passenger, you'll have to tail the log file yourself. mongrel will display the log in the console window, so to get that functionality you'll have to tail -f log/development.log with Passenger.

Why does Rails ship with both? History. Webrick is written in ruby, so it was the early favorite. Mongrel came along and was better, but webrick support wasn't dropped.

If you don't want to install Phusion Passenger, use mongrel. It's the default and it works.

EDIT 2009-08: I've also had good luck with thin, a drop-in replacement for mongrel. For development, it's not that big of a deal, but it'd be something to check out for production.

link|flag
incorporate the other two comments and i'll accept this answer. – landon9720 Feb 27 at 23:39
vote up 0 vote down

While both would do, I heavily recommend against using WEBrick, it is really flakey even in development mode, and will sometimes even require a restart when it shouldn't.

I definately recommend Mongrel for development as it means you don't have to set up Apache the way you might want or need it to develop, you get an idea of how your app will probably function even in production, and really I don't see how typing script/server is that awful.

link|flag
vote up 0 vote down

I also like how mongrel outputs useful information to stdout while it's running. Both will do, mongrel is better then webrick for production. Phusion is also really cool but I don't use it for dev.

link|flag
vote up 6 vote down

Mongrel is considerably more efficient and stable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.