Google App Engine(java) - 由于超出应用程序大小限制,应用程序上传失败 - (免费帐户)

发布于 2024-12-07 06:18:50 字数 295 浏览 2 评论 0原文

我正在使用 Google 应用引擎进行开发,我的项目涉及大约 60 个 PDf 可供用户下载。

当我尝试通过单击 eclipse 中的部署按钮来上传项目时,我收到错误超出应用程序限制

我只是想知道如果我尝试使用付费帐户,付费帐户中的应用程序大小是否有所不同?

据我所知,目前 150 MB

i am using Google app engine for my development, my project involves around 60 PDfs to be available for users to download.

when i try to upload the project by clicking deploy button in eclipse i get the error app limit exceeded.

i just want to know if i try to use the paid account is there is a different in the application size in paid account or not?

as far as i know its 150 MB for now

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

忘你却要生生世世 2024-12-14 06:18:50

您应该使用 Blobstore 服务来存储您的 PDF 文件并仅保留文件的应用程序您的应用程序逻辑和表示所需,而不是数据。以下是 Blobstore 的描述:

Blobstore API 允许您的应用程序提供称为 blob 的数据对象,
远大于对象中允许的大小
数据存储服务。 Blob 是通过上传文件来创建的
HTTP 请求。通常,您的应用程序将通过呈现表单来完成此操作
向用户提供文件上传字段。提交表格后,
Blobstore 从文件内容创建一个 blob 并返回一个
对 blob 的不透明引用,称为 blob 键,稍后您可以
用于服务 blob。

You should use Blobstore service to store your PDF files and keep application only for files needed by your application logic and presentation, not data. Here is description of the Blobstore:

The Blobstore API allows your app to serve data objects, called blobs,
that are much larger than the size allowed for objects in the
Datastore service. Blobs are created by uploading a file through an
HTTP request. Typically, your apps will do this by presenting a form
with a file upload field to the user. When the form is submitted, the
Blobstore creates a blob from the file's contents and returns an
opaque reference to the blob, called a blob key, which you can later
use to serve the blob.

倾城°AllureLove 2024-12-14 06:18:50

以上都是好的建议,请尽量避免在代码中添加类似的内容。我的应用程序遇到了这个问题,并且只有大约 10MB 的代码/图像/资源。占用大量空间的是应用程序 15 种排列的 GWT 编译。

对我有帮助的一件事是将我的 GWT javascript 生成输出样式从“详细信息”更改为“混淆”,从而生成更小的代码。您还可以限制创建的排列数量。

https://developers.google.com/web-toolkit/doc/1.6 /FAQ_DebuggingAndCompiling#Can_I_speed_up_the_GWT_compiler

All good advice above, try to avoid putting content like that in your code. My app hit this issue and only has about 10MB of code/images/resources. What takes up a lot of space is the GWT compiling of 15 permutations of your app.

One thing that helped me, was changing my GWT javascript generation output style from Details to Obfuscated, resulting in much smaller code. You can also limit the number of permutations being created.

https://developers.google.com/web-toolkit/doc/1.6/FAQ_DebuggingAndCompiling#Can_I_speed_up_the_GWT_compiler?

橘虞初梦 2024-12-14 06:18:50

您最多可以上传 10MB 数据到您的应用程序引擎
请参阅以下链接

http://code.google.com/appengine/docs/quotas.html< /a>

upto 10MB data u can upload to ur app engine
see following link

http://code.google.com/appengine/docs/quotas.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文