Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing Server Push

Read about Server push here.
I want to push data to client from my web application in real time.
I was looking at TCP sockets as one of the options.
For HTTP I found a variety of frameworks for Java, PHP, Python and others over here. However I don't know whether any of these support Push.

  • What options and frameworks would you suggest for implementing Server push?
  • What language would you advocate for implementing the same and why?
like image 935
Kevin Boyd Avatar asked Sep 15 '09 03:09

Kevin Boyd


1 Answers

I'm using Orbited right now, it's great!

If you are doing chat or subscription type stuff use stompservice and orbited.

If you are doing 1 to 1 client mapping use TCPSocket.

I can give you some code examples if you want.

like image 132
DevDevDev Avatar answered Oct 21 '22 03:10

DevDevDev