How do I maximize performance for my wcf service? Is it possible to take
advantage of multicore? or multi-threading?
Thanks!!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The following Behavior properties default to the simplest (single threaded) solution, changing them from their default values will give you multiple threading, including self-hosted services.
Single(single threaded)True(effectively single threaded in UI self hosted scenario)You may want to also look at InstanceContextMode also this MSDN article gives a starting point on WCF Concurrency.