在 nginx 和 lighttpd 之间,哪一个最适合网络应用程序 (SaaS) 的需求,为什么?
在 nginx 和 lighttpd 之间,哪一个最适合网络应用程序 (SaaS) 的需求,为什么?
我试图找出:
哪一个充分利用了其运行的硬件,哪一个扩展性最好,哪一个更好地分担负载,哪一个在 DoS 攻击、常见滥用攻击等方面更安全。
Between nginx and lighttpd, which one suits the needs of a web-app (SaaS) best and why?
I seek to find out:
Which one takes advantage of the hardware its running on, which one scales the best, which one shares the load better, which one is more secure in terms of DoS attacks, common abuse attacks et al.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mongrel2 就是答案。
但如果你想坚持使用旧技术,那么 nginx 本质上是一个异步服务器,如果你需要的话,有一个开放的 API 可以构建插件。
但说真的,一定要看看 Mongrel2,因为消息队列(甚至是 ZeroMQ)是处理扩展的更好方法。
Mongrel2 is the answer.
But if you want to stick with older technology, then nginx is fundamentally an async server and there is an open API to build plugins if you need that.
But seriously, do look at Mongrel2 because message queueing (even zeroMQ) is a better way to handle scaling.