Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I built a net.TCP WCF which play as a bridge between 2 clients.

My concern is the scale how I can do that if I get 1 million users, so I have few questions and hope get answers:

  1. Is there better way than the one I built? , handle object inside dictionary (inside the bridge) for each connection and when client A want to talk to client B, I find the client B inside dictionary using the callback channel (OperationContext.Current.GetCallbackChannel) call client B. My issue here is,

OperationContext.Current.GetCallbackChannel

1.1. How much connection I can handle, if the only issue is memory (discretionary), then I assum I can use Database, how I can save instance (OperationContext.Current.GetCallbackChannel) to database and get it (export/import to/from database - SQL Server)

1.2. If we add load ballencer, how I'll be sure that loadballencer will connect Client A to the correct instance of the WCF bridge where the callback, is there a way to manage it

  1. how this solution solve in the market, how Skype for example manage such issue (connect 2 ppl)

  2. I know P2P, but is there really P2P mechanize without pass my server?, mean after create the connection my server will move from the picture, by this I'll be able to manage more connections!

  3. what the different between P@P to net.TCP in WCF, I see WCF support P2P connection, what this mean?

Sorry too many question, but I'm sure it will be helpful and useful to others

Best regards,

Markos

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.