WCF NetTcpBinding Buffered vs Streamed performance problems
- by DxCK
I wrote a WCF service that should transform any size of files, using the Streamed TransferMode in NetTcpBinding, and System.IO.Stream object.
When running performance test, i found significant performance problem.
Then I decided to test it with Buffered TransferMode and saw that performance is two times faster!
Because my service should transfer…