Google App Engine 中的数据存储
如何在 Google App Engine 中存储超过 10 MB 的数据? 数据存储中的 put() 仅允许 1 MB。 我是否需要将数据切成每个 1MB 的块并存储? 或者还有其他方法吗?
How do i store data which is more than 10 MB in google app engine?
put() from datastore allows only 1 MB.
do I need to slice my data into chunks of 1MB each and store ?
or is there any other way ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,使用数据存储时,您需要使用较小的块。您还可以使用 Blobstore API。
Using the datastore, yes, you'll need to use smaller chunks. You could also use the Blobstore API.