克服 GAE 数据存储中的 1mb 文件限制
就目前而言,我们正在使用数据存储 blob 来存储我们网站的个人资料图像。数据存储中对于将超过 1mb 的文件作为 blob 存储在数据存储中存在限制。有没有解决这个问题的方法。
As if for now, we are using datastore blob to store profile images of our site. And there is restriction in Datastore for storing more than 1mb file as a blob in datastore. Is there any work around for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Blobstore。
You could use the Blobstore.
您可以通过将 blob 拆分为多个部分并将它们存储在单独的实体中来解决此问题。不过,您应该做的是按照 @Thilo 的建议使用 Blobstore。
You could work around this by splitting the blob into multiple pieces and storing them in separate entities. What you should do, though, is use the Blobstore as @Thilo suggests.