I have a wcf service that will be running on a multicore system, with multiple NIC cards. Do I need to do anything in order to take full advantage of the cores? Do I need to run multiple instances of the service? Or will .NET automagically handle everything for me?

Thanks!!

link|improve this question

I believe the answer to this question might depend on your anticipated hosting configuration (Self-hosted, Hosted in a Windows service, Hosted in IIS) – Dirk Dec 12 '10 at 20:20
Thanks, Dirk. This app is a big ball-of-mud of code that I inherited about 6 months ago, and I am also new to WCF. I know that it isn't hosted in IIS, because we are using NetTcpBindings. How can I tell if it is self-hosted, or hosted in a windows service? And how does this affect multi-core? – Jacko Dec 13 '10 at 0:42
feedback

1 Answer

up vote 0 down vote accepted

There is an article discussing performance settings in WCF you may consider wrt. concurrency.

link|improve this answer
Thanks, Martin. That was very useful. – Jacko Dec 13 '10 at 0:41
Just watch the defaults on queued services (i.e. services that read from MSMQ) I typically set those to one. High concurrency here leads to many failures due to locks. – MetalLemon Dec 13 '10 at 7:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.