Is multicast is right choice?

  • Thread starter Thread starter Irfan Ahmed
  • Start date Start date
I

Irfan Ahmed

Hi,

I am creating an online trading system and I need to display currency
rates on my client machines over internet. can anybody tell me if the
multicasting is the right choice for sending data to thousands of
clients and please let me know if there is any other alternative? or
should i send the data point to point to individuals who login to my
system.

Anyhelp with C# code shall be a great help to me.

Thanks and Regards
 
If you're going to have thousands of clients connected simultaneously, you
may really want to consider a pull rather than push approach. The clients
can poll every few seconds to retrieve the latest updates.

Although this depends on your requirements. How timely do the updates have
to be?
 
there are 18 currencies and usually we need to it update it once in a
second, as other online currency trading systems are doing.

Irfan Ahmed
 
there are 18 currencies and usually we need to it update it once in a
second, as other online currency trading systems are doing.

Irfan Ahmed
 
Back
Top