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?