mongrelはRailsを早く走らせてくれるWebサーバらしい。 ちょっと試してみる。 まず、mongrelはスレッド起動などが無いため、1ポート1プロセス。インターネットサービスとしては使えません。なので、後述するmongrel_cluster+Apache mod_proxyと併用します。 # rdocをインストールしてない人は yum -y install rdoc # mongrelのインストール gem install mongrel --include-dependencies cd RAILS_ROOT mongrel_rails start -d development -p 3000 -B mongrel_rails stop