为 WCF 服务打开 MTOM 的性能影响
如果为实际上并未通过网络传输任何二进制文件的 WCF 服务打开 MTOM,是否会对性能产生明显影响?
Would there be any noticeable performance hit if MTOM is turned on for a WCF service that isn't actually transferring any binary over the wire?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您现在的绑定设置是什么?
MTOM 比文本快(如果发送二进制文件),但比二进制慢。
您声明您没有二进制数据,在这种情况下 MTOM 将比文本慢!它需要将数据打包到 MIME 文档中,这需要时间。
问候,
M.
What is your binding set to now?
MTOM is faster than text (if binaries are sent), but slower than binary.
You stated you have no binary data, in that case MTOM will be slower than text! It needs to pack the data into a MIME-document, and that takes time.
Regards,
M.