如何将 Mongrel 用于我的非 Rails ruby Web 应用程序?
我正在开发一个非 RoR 但 ruby web 应用程序。
到目前为止,我只是使用 requests、hacks 和 mod_ruby;但我真的很想尝试一下 Mongrel——它似乎非常适合 RoR 站点。
我查看了 GitHub 中给出的示例,没有一个可以动态更改内容而无需重新启动 Mongrel,就像您在开发模式下的 RoR 中所做的那样。
我该怎么做? (仅使用 load
是行不通的。)
I've got a non-RoR but ruby webapp in the works.
So far, I've just been using requests, hacks, and mod_ruby; but I'd really like to try out Mongrel--which seems to work really well for RoR sites.
I looked at the examples given in GitHub, and none of them does dynamic changing of content w/o having to restart Mongrel like you can do in RoR under dev mode.
How can I do this? (Just using load
doesn't work.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 Sinatra 和 Mongrel 后端;你好世界真的就像首页上所说的那样简单。我实际上是从 Sinatra 开始的,然后在尝试了哪个可以提供更好的性能后,将服务器从 webrick 更改为 mongrel。
请参阅此问题了解测试的结果。
I use Sinatra with a Mongrel backend; hello world really is as easy as it says on the front page. I actually started with Sinatra, and then changed the server from webrick to mongrel after experimenting around with which gave better performance.
See this question for how that testing worked out.