Google Appengine 3000 文件限制上的 Django nonrel

发布于 2024-12-06 16:23:00 字数 315 浏览 1 评论 0原文

我按照 http://www.allbuttonspressed.com/projects/djangoappengine 上的说明进行操作,但之后意识到生成的项目有近 5,000 个文件,即因为 django 目录。

我是否不应该包含 django 1.3 而只使用内置于 Google App Engine 的 django 1.2 ?或者我错过了什么?我听说 zipimport 对于 django 来说不是一个好主意。

I followed the directions on http://www.allbuttonspressed.com/projects/djangoappengine, but afterwards realized that the resulting project has almost 5,000 files, namely because of the django directory.

Am I not supposed to include django 1.3 and just use django 1.2 builtin with Google App Engine? Or am I missing something? I've heard that zipimport is not a good idea with django.

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

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

发布评论

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

评论(1

少年亿悲伤 2024-12-13 16:23:00

解决方案并不多:

  • 您可以尝试删除 Django 目录中所有不必要的库。
  • 如果您不想使用 django 1.2 随
  • GAE 提供的功能,请使用 zipimport。减少项目中使用的文件数量。

但请注意:对于您的实例,加载大量文件会比较慢,因为文件系统中有大量读取。 django.zip 只读取一次并存储在内存中以解压缩它。文件系统上只有 1 次读取,而不是 3000 次甚至更多...

There are not a lot of solutions:

  • You can try to remove every lib unnecessary in the directory of Django
  • Use zipimport if you don't want use django 1.2 provides with
  • GAE. Reduce the number of files you use in your project.

But note that: For yours instances, load a lot of files is slower because there are a lot of reads in the file system. django.zip is reads only one time and stocked in the memory to unzip it. there is just one read on the file system not 3000 and more...

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