I want to implement my own realtime notification system (like facebook – when someone in my friends list comments on/likes my status, I’m notified about that)
I just want to know which technologies are best suited for such problem domain.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It used to be
AJAX, then there is nowComet. Just then, there is also HTML5Web Sockets.But i guess what is prevalent to your situation at present may be solved by
Comet.Its called pushed notification.
AJAX can be used in a pull notification manner, i.e. browser periodically checks the server for updates. Comet is for push notification, i.e. server sends updates to the browser.
Web Sockets is only relevant in HTML 5 enabled browsers.