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.

Let's have a concept of real-time web application:

  • user performs some frontend action/request
  • backend receives a message
  • backend starts processing and inserting data to SQL database
  • frontend instantly displays these outputs as they're being inserted

(practical reference: http://twitter.musictrack.me)

My approach:

  • RabbitMQ listening for new messages
  • Python worker processing data once the message is received
  • JavaScript poller which is fetching SQL data every second into browser
$(document).ready(function() {

  $("#showdata").load("realtime-worker.php");

  var refreshId = setInterval(function() {

    $("#showdata").load('realtime-worker.php');

  }, 1000);

  $.ajaxSetup({ cache: false });

});

The "realtime-worker.php" is a simple PHP script which selects output data. And since it is done every second, we can get sort of a realtime feeling.

Question:

Is there a better general approach? What are the best practices (in terms of polling new stuff to browser) when making realtime websites similar to given example above?

share|improve this question

closed as not constructive by Flexo, Martijn Pieters, Nate, Florian Margaine, Praveen Kumar Nov 19 '12 at 18:34

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Sure, but what limitations do you have with browser support? I'm using websockets to push database updates down to the client, obviously only for html 5 enabled browsers. You're polling, this is more of a pushing messaging system.

For old browsers, yes, long polling as become to the most used that i've seen, but adoption of the web sockets for html5 has been very steady.

share|improve this answer

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