Wednesday, March 14, 2012

GAE in Action


Some Concerns in using GAE as your Backend
  1. No sockets. The API does not allow Java sockets. You may use URLFetch API instead.
  2. No relational database, not even deploying a sqlite db as resource file due to the read-only restriction of resource file in GAE. (This is not true now as Google is rolling out Cloud SQL API which support MySQL-like relational database.)
  3. HTTP response/request data size limits : 10MB each

Facebook JavaScript SDK
http://developers.facebook.com/docs/reference/javascript/

The Unofficial Google App Engine Price Change FAQ
http://blorn.com/post/10013293300/the-unofficial-google-app-engine-price-change-faq

Scheduled Tasks With Cron for Java
http://code.google.com/intl/en/appengine/docs/java/config/cron.html

No comments:

Post a Comment