通过 REST 发送大量数据 - 最佳实践
通过 REST 将 100,000 条记录从应用程序的一部分发送到另一台服务器上该应用程序的另一部分是一种好方法。
我正在考虑在一个 POST 请求中发送 PKEY 数据,然后通过 PUT 批量填充每条记录。尽管如此,我仍然不清楚如何正确地做到这一点。
有 3 个问题:
a)建议的方法可以吗?最佳实践怎么样? b) 最好先发个帖子然后再贴? c) 每个请求执行一次(意味着 100,000 个请求)或通过内容长度检查数据或......什么? :D
提前致谢。 巴特
How is a good way to send like 100,000 records over REST from one part of an application to another part of that application on another server.
I was thinking about sending PKEY data in one POST request and then populate each record via PUT in bulks. Still, I have no clear idea how to do proper do it.
There are 3 questions in place:
a) Is proposed method ok? What about best practices ?
b) It's good to do a post then put ?
c) It's ok to do it one per request (meaning 100,000 request) or check the data via content-length or ... what? :D
Thanks in advance.
Bart
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“其余”方法是发出单独的请求,或包含多个对象的批量请求。但是,您可以查看 WCF 中的流功能,将对象序列化到流并读取它们(请参阅此 关于 CodeProject 的文章 或此 博客文章< /a>)
The "rest" way to do it is to issue separate requests, or batch requests containing multiple objects. However, you can look at streaming capabilities in WCF, serialize objects to the stream and read them (see this article on CodeProject or this blog post)