构建基于 Web 的即时消息传递的最佳方法?

发布于 2024-09-10 04:24:18 字数 1436 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烟花易冷人易散 2024-09-17 04:24:18

XMPP/BOSH

  • 现在我会使用 XMPP/BOSH 来编写基于 Web 的 IM。我发现 Prosody 是支持
  • 然后对于 javascript,我将使用 strope.js

未来

  • 就像 Pablo 指出的那样,你可以看看 websockets 。但巴勃罗对 gmail 的了解有误。它不使用网络套接字。 Websocket 的主要缺点是浏览器支持。这是未来,但还不是现在。

错误的

  • 轮询不会扩展。我不会推荐它。

XMPP/BOSH

  • Right now I would use XMPP/BOSH to write web-based IM. I found Prosody the easiest server that supports BOSH. Then you don't need to write any server-side code at all.
  • Then for the javascript I would use strophe.js

The future

  • Like Pablo pointed out you could look at websockets. But Pablo is misinformed about gmail. It does not use websockets. The major drawback of websockets is browser support. It is the future, but not yet.

Wrong

  • polling does not scale. I would not recommend it.
茶底世界 2024-09-17 04:24:18

使用 AJAX 来 ping 和更新数据库并不是一个很好的选择。

我建议您阅读有关 WebSockets 的内容。这就是 GMAIL 聊天(以及其他)的工作方式。

Using AJAX to ping and update a database is not a very good option.

I would suggest you reading about WebSockets. It's the way GMAIL's chat (among other) work.

薔薇婲 2024-09-17 04:24:18

如果您希望使用 PHP 和少量 javascript 进行开发,请查看用于构建 Web 应用程序的 Jaxl Framework。 http://github.com/abhinavsingh/JAXL

使用ejabberd/prosody作为jabber服务器,它们很稳定并且可扩展性足以为您提供足够的吞吐量。

当然建议使用 websockets,但遗憾的是到目前为止并非所有浏览器都支持它们。

If you are looking to develop using PHP and little javascript, checkout Jaxl Framework for building web applications. http://github.com/abhinavsingh/JAXL

Use ejabberd/prosody as jabber server, they are stable and scalable enough to give you enough throughput.

Using websockets is surely recommended, but alas not all browsers support them till date.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文