I have setup a basic WCF client/server which are communicating via Named pipes.
It is a duplex contract with a callback. After the client "subscribes", a thread on the server just invokes the callback as quickly as possible.
The problem is I am only getting a throughput of 1000 callbacks per second. And the payload is only an integer!
I need to get closer to 10,000.
Everything is essentially running with default settings.
What can I look at to improve things, or should I just drop WCF for some other technology?
Thanks