Liftweb Comet 有哪些优点和缺点?
Liftweb Comet 相对于其他 HTTP Server 推送技术有哪些优点和缺点? - liftweb comet 的可扩展性如何? - 设计问题和依赖性 ETC..,
What are the advantages and disadvantages of Liftweb Comet over other HTTP Server push technologies?
- How scalable is liftweb comet?
- design issues and dependencies
etc..,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Comet 是 Ajax HTTP 服务器推送的通用术语。有关更多详细信息,请参阅此链接:
http://exploring.liftweb.net/master/index -11.html
我相信这是用 Lift 实现服务器推送的唯一方法。
上面的链接很好地描述了使用 Comet 相对于 Ajax 轮询的优势(减少流量/更好的响应能力)。
根据这个来源,由于使用非阻塞 IO,Lift Comet 在 Jetty 上最具可扩展性,但这似乎是一个有争议的话题:
Comet VS Ajax 轮询
Java I/O 与 Java new I/O (NIO) with Linux NPTL
如果您提供了有关 Comet 替代品的更多详细信息,您认为会更容易为您提供相对优势和缺点。
Comet is a generic term for Ajax HTTP server push. See this link for more details:
http://exploring.liftweb.net/master/index-11.html
I believe this is the only way to implement server push with Lift.
The advantage of using Comet over Ajax polling are well described in the link above (reduced traffic/better responsiveness).
According to this source Lift Comet is most scalable on Jetty due to the use of non-blocking IO, but it seems to be a controversial topic:
Comet VS Ajax polling
Java I/O vs. Java new I/O (NIO) with Linux NPTL
If you gave more details on the alternatives to Comet you consider it would be easier to give you the relative advantages and disadvantages.