There’s a new web server in town for Ruby, and it’s name is Thin. While it uses the Mongrel parser, it does not rely on it, and ultimately, it’s faster. Install it and see for yourself.
Getting started is super easy
- Install the lastest: sudo gem install thin –source http://code.macournoyer.com
- Change to the root directory of your Rails app
- thin start
That’s it! Pretty easy. I ran some initial non-scientific tests on Leopard – run Thin in development mode, click links, view logs. I used our corporate site which uses Edge Rails, and I have seen an additional 20-40 reqs/sec over Mongrel. Plans are to launch an EC2 instance and run it in production to see what happens.
Other Posts That Might Interest You

