Somebody knows if the "There are new answers" notifications appearing at the top of the page while answering a question are retrieved using periodic polling or making use of some kind of comet/long-polling solution?
|
migrated from stackoverflow.com Aug 12 '10 at 1:45
|
Yes, it is traditional polling every x seconds. You can see it in action, using Firebug:
|
|||||
|
|
I imagine it is some kind of timestamps, the one that was get at the time you entered the question page... and the one of the new answer of that question... maybe there is kind of interval function execution (maybe 30 seconds) asking if there are question with a timestamp that is newest that your timestamp... if so, and you click "load new answers" the timestamp updates and the question are loaded and the loop continues... |
|||
|
|
