Google Reader 类 Web 应用程序 (SmartGWT) (GWT)
我需要编写像 google reader 这样的网络应用程序(使用 SmartGWT)。
我将显示实时更新的日志文件,而不是 RSS feed。我想我可以启动一个计时器并询问服务器每分钟是否有新日志。这是正确的方法吗?
我必须使用 WebSocket 吗?它们适用于所有现代浏览器吗?
I need to write web aplication like google reader (using SmartGWT).
Instead of RSS feads I will show log files which updates in realtime. I think I can start a timer and ask server are there any new logs every minute. Is this the right way to do this?
Do I have to use WebSockets? Are they working in all the modern browsers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在不使用服务器推送的情况下,这是可行的方法。您通常希望使用上次收到的日志条目的时间戳来查询服务器。这样你就可以只发送自上次拉取以来的差异。
有关 GWT 和推送的更多信息,请参阅此处(这实际上是拉)。或者查看 stream-hub (以及拉皮条的 股票观察器示例)如果您想进行服务器推送。
Without using server push this is the way to go. You typically want to query the server with the timestamp of the last received log entry. This way can you only send the diff since the last pull.
See here for some more information on GWT and push (which is actually pull). Or check out stream-hub (and the pimped stock watcher example) if you wanna go for server push.