Hi all..
Are any of you aware of some good strategies for checking for updates on a webserver?
I'm thinking a long the lines of the facebook startpage and stackoverflow questionviewing here. However, I need to load the new data without reloading the whole page.
Currently, I think of having a javascript "timer" working through the pages lifetime, polling the webserver if any new data has been entered. Our target scope is ~2000 browsers doing this at the same time, so I really don't want a full-scale equality checking of the old data vs. the new data.
I'm using ASP.Net, so I thought a good way to achieve this would be to store a "last datapolling time" variable in the session variable, and then update that time if new data has been entered that this client should receive. Does this sound feasible to you?
I'm not sure I explained myself fully here, so please ask any questions you might have in the comments, and I'll update this question :)
Thanks in advance