mongrel

mongrel
Railsには標準でWebrickというWebサーバーが導入されていますが、ピュアなRubyのみで作成されていることもあり、少々遅いです。
一方、mongrelは速度的にはWebrickの何倍も早いようです。

■ インストール
gemでインストールします。

[root@example ~]# gem install mongrel  --include-dependencies

■ 起動
RailsのWebサーバーが自動的に、mongrelに切り替わっているはずです。
Railsプロジェクトの直下に移動して、Webサーバーを起動してみましょう。

[root@example sampleproject]# ruby script/server

Ruby version is not up-to-date; loading cgi_multipart_eof_fix

=> Booting Mongrel
=> Rails 2.3.2 application starting on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server