Reputation: 916
Does anyone have statistics of using WCF with 20000 clients?
Just don't know it's performance of loading 20000+ clients, anyone can give me a real data about this?
And also, for each client, we will transfer data from several Kb to 100MB, does it suitable for WCF to finish this in a good performance?
And also, is there any messaging platform good enough for us to use with low cost in money?
Just need purely .net platform.
Would anyone have some insights on this?
Thx very much.
Upvotes: 4
Views: 284
Reputation: 5356
You can check it yourself by using the WCF Load Test.
This tool takes a WCF trace file and a WCF client proxy, or a WCF interface contract, and generates a C# unit test that replays the same sequence of calls found in the trace file. The unit test can then be used to load-test the target.
Here's a really good walkthrough in using the WCF Load Test. The answers here might also help you.
Upvotes: 3