最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - How to get realtime updates? - Stack Overflow

programmeradmin1浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论