Remoting Vs Socket for high throughput scenario?
-
Anyone tried exposing, say, a stock price update service (i.e. Price Feed), via Remoting as supposed to traditional tried and true Socket based communication? Is Remoting fast enough? Viable alternative?
dev
Hellow dev, according my knowledge u should go for remoting instead of sockets. Ofcourse u can implement it thorough sockets as well as remoting but remoting gives u more flexibility. Remoting can also handle multiple calls so better is to use remoting.
-
Hellow dev, according my knowledge u should go for remoting instead of sockets. Ofcourse u can implement it thorough sockets as well as remoting but remoting gives u more flexibility. Remoting can also handle multiple calls so better is to use remoting.
This is for a client server application where scenario: 5000 x 3 updates/min --> 15k updates per min per client Each update comes from server, published/push to subscribers on client workstation over corporate intranet. You done remoting in situation similiar to this? Is it fast enough? I don't think encryption is relevant as this need to be done (optionally) whether remoting or over socket.
dev