使用 AJAX 进行实时聊天
大家好 我只是想知道如果我使用 AJAX 作为我的聊天引擎,它会导致我的服务器崩溃还是对于一次大约 1500 人的流量会正常工作?
还建议我一些方法来发出自动ajax请求来更新聊天框的内容。应设置连续查询之间的延迟多少,以免导致我的服务器过载???
提前致谢 :) :)
Hello everyone
I just wanted to know if I use AJAX for my chat engine, will it crash my server or it will work fine for a traffic of about 1500 people at a time ??
Also suggest me some way to make automatic ajax request to update the contents of chat box. How much delay between consecutive query should be set so that it doesn't cause my server to overload ???
Thanks in advance :) :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的要求,您可能需要研究 WebSocket。在当地的黑客之夜,我们使用 http://faye.jcoglan.com/ 很快就制作了一个简单的聊天系统。这是一个 pub sub 服务,您可以在客户端使用 javascript 来订阅特定频道。然后只需对前端进行编码以处理输入和输出即可。
Depending on your requirements, you might want to look into WebSockets. At a local hacknight, we produced a simple chat system pretty quickly using http://faye.jcoglan.com/. It's a pub sub service that you can use javascript on the client side to subscribe to a specific channel. Then it's just a matter of coding the front end to work with the input and output.