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
Add a ment  | 

3 Answers 3

Reset to default 8

To 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