admin管理员组文章数量:1345903
I was chatting frequently in Facebook and as I love to code more and more so I tried to create a Chat Script! Here it is ::: .1.1/ChatSystem.1.1/
You try it out. But it is just a beta version so there are some bugs in it. And one of the biggest bug is that it requires a good internet speed to get real time updates. But when I push my net's speed to it's maximum and then chat with one of my friends in Facebook, it work in real time! I was wondering how did they do that? Can anyone explain me how they achieved this. Currently I'm sending Ajax requests in number intervals to get real time update. So please help me out by explaining or giving a link that how did Facebook achieved real time Chats without using much of the Internet speed?
I was chatting frequently in Facebook and as I love to code more and more so I tried to create a Chat Script! Here it is ::: http://wooflux.co/ChatSystem.1.1/ChatSystem.1.1/
You try it out. But it is just a beta version so there are some bugs in it. And one of the biggest bug is that it requires a good internet speed to get real time updates. But when I push my net's speed to it's maximum and then chat with one of my friends in Facebook, it work in real time! I was wondering how did they do that? Can anyone explain me how they achieved this. Currently I'm sending Ajax requests in number intervals to get real time update. So please help me out by explaining or giving a link that how did Facebook achieved real time Chats without using much of the Internet speed?
Share Improve this question edited Jul 31, 2012 at 7:42 j0k 22.8k28 gold badges81 silver badges90 bronze badges asked Jun 10, 2011 at 10:12 Jack BillyJack Billy 7,2116 gold badges29 silver badges39 bronze badges 2- 4 Use websockets, node.js & socket.io. – Raynos Commented Jun 10, 2011 at 10:14
- 1 The question may be phrased badly, but its a perfectly solid question. "How do I reduce latency for a web based chat application" – Raynos Commented Jun 10, 2011 at 10:18
3 Answers
Reset to default 8To do real time munication you need a proper connection.
You can use WebSockets to give you a real Browser - Server TCP connection.
The alternative to WebSockets would be a flash bridge (which uses websockets in flash) or COMET techniques.
My personal remendation is a WebSocket abstraction like socket.io.
Socket.io builds on node.js which Serverside Javascript. It excels at evented asynchronous real time munication.
If your going down the node route you might aswell pick up now
to make your life easy. It has a screencast about making a chat server in 12 lines.
Use COMET to push your messages to the client instead of polling your server all the time
See: Using et with PHP?
I don't know how Facebook does it, but we use Node.js
for pushing. Visit http://www.no-margin-for-errors./blog/2010/07/26/deliver-real-time-information-to-your-users-using-node-js/ for an example.
本文标签: phpHow to get realtime updatesStack Overflow
版权声明:本文标题:php - How to get realtime updates? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743817467a2544181.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论