Search code examples
wcfperformancemultithreadingmulticore

High performance wcf


How do I maximize performance for my wcf service? Is it possible to take advantage of multicore? or multi-threading?

Thanks!!


Solution

  • 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.

    You may want to also look at InstanceContextMode also this MSDN article gives a starting point on WCF Concurrency.