By loxal
via borglin.net
Published: Mar 15 2010 / 02:48
The standard way to persist objects in Google App Engine is to use either JDO or JPA. A much performant strategy for persistence is to use the GAE Datastore API directly. However this is quite inconvenient as you can't persist non-Entity objects. Objectify is a minimalistic high-level wrapper for the GAE Datastore API which shows a better persistence performance than JDO. Also you can you can use Objectify's entities in GWT. So you may omit the creation of GWT-specific Data Transfer Objects!



Add your comment