Django out-of-band performance in Google App Engine

What is the impact of application performance on Google App Engine using django-nonrel as opposed to webapp?

I know that there is no big difference between webapp and django, which is already included in the Google appengine application, but the question is related to the excellent work that the guys did at: http://www.allbuttonspressed.com/

thank

+3
source share
2 answers

Django , Webapp ( Django, ) - 500 , . .

- RPC , .

+4

Django appengine, appengine django. Webapp - , webob. django-nonrel

Django-nonrel is a project which allows developers to run native Django projects (including Django ORM) on non-relational databases, one of which is Google App Engine Datastore. (This is all in addition to the standard traditional SQL databases that have always been supported by Django.) App Engine does come with some Django support, but this is mainly only the templating and views. Other tools that allow for rapid development such as forms, the built-in administration interface or Django authentication just won't run out-of-the-box. Django-nonrel changes this for Django developers.

Django- django appengine . , , , django-nonrel.

0

All Articles