thinRails应用服务器
thin 是一个轻巧快速的 Ruby web 服务器。
thin 是个合成品,分别使用了来自 mongrel 的解析器,Every Machine 的网络IO库,Rack 的 web 服务器和 Ruby 框架的接口。
也就是说 thin 有 mongrel 的速度和安全性,有 Every Machine 的高伸缩性,性能和稳定性。
那如何在你的 Rails 中使用 thin 呢?
首先安装 thin:gem install thin
然后要运行 thin 服务器就在你的根目录下执行:thin start
评论