Reputation: 6269
I have a kind of application that must query a db at periodic intervals..I want to use push technology such that when the database is updated, the server sends data to the client..How is it possible to implement that ?
Upvotes: 1
Views: 1349
Reputation: 65274
We do this quite regularily - our way is "long polling":
Upvotes: 3