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:
- 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
how this solution solve in the market, how Skype for example manage such issue (connect 2 ppl)
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!
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