How portable are applications for the Google App Engine? Are these bound forever on the GAE?
|
4
|
|
|
|
|
|
I don't have much hands-on experience of the GAE, but I was reading this article recently, which touches on your question: |
||
|
|
|
|
As a good consultant, I'd say the answer is "depends." First of all, you can always run a GAE project in the SDK. So to that extent you're not bound. Beyond that, it depends on what other APIs you use. The webapp library is very much like some others, but I don't think it's available as a standalone; however, GAE supports Django as a web framework as well, and that of course is available stand alone. The code is just Python. But some of the APIs, like the data API, are really meant to interact with the Google cloud; you can't be sure you can move an arbitrary GAE program to another platform without rework. |
|||
|
|
|
|
If you use Django 0.96 you can move your code to a different host after some minor work. You will need to change port your Models from datastore to another database. You will have to stop using the google provided User class and possibly other google specific APIs. I have ported Django apps to GAE without much trouble. |
||
|
|
|
|
You can use gae2django to convert AppEngine applications to Django application. As mentioned in this article http://code.google.com/appengine/articles/pure_django.html gae2django http://code.google.com/p/django-gae2django/ |
||
|
|
|
|
If you do not use Google's own WebApp framework, but rely on more standardized tools (I'm not saying Django here), there are only few things to isolate from core application logic and make pluggable/swappable:
In my opinion - worth a try. |
||
|
|
