Pinax 可以部署在 GAE 上吗?
使用 Pinax 开发的应用程序是否有可能部署在 Google App Engine 中?
据我所知,Pinax基于Django,集成了大量应用程序,甚至适合构建社交网站。它非常有用,但我想知道是否可以将它部署在谷歌应用程序引擎上。
谢谢你,
Is there any chance that an application developed with Pinax could be deployed in Google App Engine?
As I know, Pinax is based on Django, and integrates tons of applications, it is suitable for building even a social networking site. It's extremely useful but I wonder if I can deploy it on google app engine.
Thank you,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这里的主要问题是 Django ORM 与 GAE 的数据存储不兼容,但是 一些工作已经完成已使用 app-engine-patch 移植 Pinax 。 这是存储库。
The main issue here is that Django ORM is not compatible with GAE's datastore but some work has already been made to port Pinax using app-engine-patch. Here is the repository.
当然关键是对多对多模型关系的 JOIN 支持。由于“最终一致性”上下文已经解决了这个问题,因此我们没有理由不能解决这个问题。我现在正在转移社交演示。
The key of course is JOIN support for the many to many model relationships. Since this is already being solved for 'eventual consistency' context, there should be no reason that we couldn't. I'm in the middle of moving the social demo over right now.
“Hoang”-
看起来 2009 年 8 月 2 日发布了一个版本,其中包含 Django 1.1(请参阅 http://code.google.com/p/app-engine-patch/wiki/ReleaseNotes )
我知道您说的是 7 月,8 月 2 日与 7 月没有太大区别。 :)
我也对 App Engine 上的 Pinax 感兴趣。如果您尝试一下,请报告您的发现!
"Hoang"-
It looks like there was a release on Aug 2, 2009, to include Django 1.1 (see http://code.google.com/p/app-engine-patch/wiki/ReleaseNotes )
I know you said July, and August 2 isn't much different than July. :)
I, too, am interested in Pinax on App Engine. Please report your findings, if you try it!
Pinaxcombo 仅针对 Pinax 的博客部分进行此操作。是否有任何努力将“整个”Pinax 移植到 GAE 上?
Pinaxcombo does it only for the blog part of Pinax. Has there been any effort to port the 'entire' Pinax onto GAE?