对于低带宽网络来说,最佳的 BlazeDS 轮询方法是什么?
我想知道 BlazeDS 轮询配置(简单或长轮询)最适合低带宽网络。
I am wondering BlazeDS polling configuration, simple or long polling, is the best for a low bandwidth network.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HTTP 流应使用最少的带宽并具有最低的延迟。但请确保配置故障转移,以防无法建立连接。
HTTP Streaming should use the least amount of bandwidth and have the lowest latency. But make sure you configure a fail-over in case the connection can't be made.
正如詹姆斯所说,HTTP 流。如果你做不到(例如,如果你不允许保持开放连接超过 20 秒),我会坚持使用长轮询而不是简单的轮询。
As James said, HTTP streaming. If you cannot do it (for example if you are not allowed to keep open connection for more than 20 seconds) I would stick with long polling over the simple one.