TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Running Pure Django Projects on Google App Engine

35 点作者 mbowcock超过 14 年前

5 条评论

andrewgodwin超过 14 年前
I'm not sure that GAE is the ideal environment to run Django in - the whole reason it scales is because it enforces a certain way of doing things (nonrelational datastore, no long-running processes, no local storage).<p>General Django PaaS will probably be 'nicer' with the various less-restricted options that are springing up (be that mine, ep.io, or others, like djangy, gondor.io, apphosted, or the several others I forget), since those tend to lessen up on the "it must scale" aspect and focus more on making the 99% majority of sites (i.e. medium sized or smaller) work well.
评论 #2232499 未加载
micrypt超过 14 年前
Prior discussion - <a href="http://news.ycombinator.com/item?id=1955387" rel="nofollow">http://news.ycombinator.com/item?id=1955387</a>
tommyg超过 14 年前
I am currently using Django Nonrel with mongodb with very good success for some client work. It's actually deployed to AWS not App Engine, but the code between the two is virtually identical. AWS was chosen for video processing requiremets. The tools and short cuts django provides like the automatically generated admin have made the project viable. I haven't seen the db-indexer project before, but looking forward to checking it out.
civilian超过 14 年前
Minor thing, could we have the link go to <a href="http://code.google.com/intl/nl/appengine/articles/django-nonrel.html" rel="nofollow">http://code.google.com/intl/nl/appengine/articles/django-non...</a> instead of <a href="http://code.google.com/intl/nl/appengine/articles/django-nonrel.html#fw" rel="nofollow">http://code.google.com/intl/nl/appengine/articles/django-non...</a> ?
评论 #2232467 未加载
Kilimanjaro超过 14 年前
I've been using AppEngine for years and I am very happy with webapp, easier and simpler.