Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to understand how one might incorporate functionality into a website so that if another user does something relevant the user gets a live update on their page. So may websites do this and I would like to know the various ways!

Is that long polling?

Is this part of what people use and for?

share|improve this question
I think long polling is a continuous connection. Is that correct? – tester123 Jun 21 '12 at 16:32
1  
@opensourcechris yes long polling is a continuous connection. The server doesn's supply a the lenth of the response so the browser doesn't know when the response is finished (until the server supplies a termination). Untill then any data can be sent to the browser to trigger "events". But in order to obtain event like behaviour the new data sent will be javascript snippets. That way when they arrive they are interpreted and executed. This technique is used in old browsers if they don't support other techniques. – Mihai Stancu Jun 21 '12 at 16:34
possible duplicate of Displaying data in real-time on web page – hotveryspicy Jun 22 '12 at 4:59

4 Answers

In Old browser you can use Old pooling and in new browser you can use websockets

For cross browser solution you can use SignalR library

share|improve this answer

People typically use AJAX and WebSockets/Socket IO to make website actions as sort of "functions" which, in turn, modify the webpage and cause it to "refresh". That was about as non-technical an answer as I can give...

Look into AJAX/WebSockets/Socket IO.

Redis is a super expanded memcached and Node JS is a pretty cool, new, and hot web development environment - but neither out-of-the-box give the "insta-refresh" capabilities you are talking about.

share|improve this answer

Yes, what you are looking for is either "Long Polling" or Websockets. Here's a quick link to help you get started on understanding them (they are different, btw).

http://dsheiko.com/weblog/websockets-vs-sse-vs-long-polling

here are the basics:

  1. Long polling, using javascript, open a connection to the webserver, after the webserver sends a response, open a new connection to the webserver, rinse, repeat.

  2. websockets use a different protocol ws:// instead of http://. generally, a websocket starts as an http:// request and then is renegotiated to ws:// this is only supported in the latest browser.

share|improve this answer

You can do that with any of the Real-Time Web mechanisms, which are:

  • WebSockets
  • Comet HTTP Streaming
  • Comet Long Polling

Not all of them work under every condition (browser types, infrastructure type, etc.), so the best thing is to choose a solution that automatically chooses the best transport for each user.

As the CTO of Lightstreamer, I suggest you to take a look at our online demos: http://www.lightstreamer.com/demos

In particular, check out the Round-Trip Demo by opening it in different browsers at the same time: http://www.lightstreamer.com/demo/RoundTripDemo/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.