TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Running Pure Django Projects on Google App Engine

35 pointsby mbowcockover 14 years ago

5 comments

andrewgodwinover 14 years ago
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 未加载
micryptover 14 years ago
Prior discussion - <a href="http://news.ycombinator.com/item?id=1955387" rel="nofollow">http://news.ycombinator.com/item?id=1955387</a>
tommygover 14 years ago
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.
civilianover 14 years ago
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 未加载
Kilimanjaroover 14 years ago
I've been using AppEngine for years and I am very happy with webapp, easier and simpler.