将大数据从 WCF 服务发送到客户端的最佳方式是什么?
我有一项返回大量数据的特定服务。 WCF 中处理此问题的最佳实践和选项是什么?
这些大数据在完成所有过滤后返回,因此无法再进行过滤。 数据可以达到GB。 我确实知道系统可以处理的数据量是有限的。
但在上述场景中,您会推荐哪些选项/替代方案。
I have a particular service which returns large amount of data. What' is the best practice and options available in WCF to handle this?
These large data is returned after doing all the filtering, so no more filtering is possible.
The data could go into GB's. I do understand there is a limit to how much data a system can handle.
But give the above scenario what options/alternatives would you recommend.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用流式传输 MSDN
Use streaming MSDN
MTOM 是一种将 SOAP 消息作为原始字节传输大型二进制附件的机制,允许较小的消息。
请参阅: http://msdn.microsoft.com/en-us/library/ aa395209.aspx 了解详细信息。
MTOM is a mechanism for transmitting large binary attachments with SOAP messages as raw bytes, allowing for smaller messages.
see: http://msdn.microsoft.com/en-us/library/aa395209.aspx for details.