Following on from this question:
http://stackoverflow.com/questions/334472/run-wcf-servicehost-with-multiple-contracts
Are there any performance penalties from running multiple service hosts as suggested in one of the answers?
I am looking at implementing a solution with 4-5 service contracts, and could define one class implementing the contracts as chilltemp's suggestion, or run 4-5 service hosts each hosting one service contract as Chris Porter's suggestion.
I would prefer to run multiple service hosts for a bit more flexibility but I wondered if there was any performance penalty to starting these hosts?
Thanks in advance,
Will