Community contributed extensions

Twig Persistence

Twig Persistence is a typesafe, DSL-based persistence framework for the Google App Engine datastore. Twig pleasantly combines batch operations, in-memory joins, and asynchronous queries, allowing the developer to side-step some of the annoying work associated with working with the datastore.

This module uses the Twig 2.0-beta3 release which I have put to use in a production GAE application with little trouble. There are still some obscure bugs that you may stumble across. This documentation provides a quick overview of the module. For more information, please go to the Twig homepage.

Note Twig has a dependency on the Google Collections/Guava library.

Note Want to see Twig in action? Checkout CheckingSpree, a sample application with documented source code available on GitHub.

Source code and issue tracking is available at GitHub Play-Twig.

Using the Twig module

This module comes with a static helper class called Datastore. This class exposes the core persistence API and is refreshed with a new ObjectDatastore instance on each request. Twig internally caches datastore instances to improve performance, especially with in-memory joins. For this reason, it is dangerous to share the same instance of ObjectDatastore between requests.

Note If you use a dependency injection framework such as Guice, do not inject the ObjectDatastore instance directly. You should inject an instance of Provider that will read the correct ObjectDatastore from Datastore.getInstance() or by creating your own.

Models

Setting up a domain model using Twig is remarkably easy. This module uses Twig’s annotation approach out of the box. The only required configuration is the @Id annotation which should decorate a String or Long acting as the primary key of your model. For more configuration options, please go to the Twig homepage.

Querying

Find

Twig queries are begun by invoking Datastore.find() and ending with a termination command followed by a lookup directive. The termination command defines what your query will return: all instances, a count, unique instances, etc. The lookup directive defines when your query will be executed: either now, immediately returning results, or later, returning a Java Future object and running the query asynchronously.

List<Comment> comments = Datastore.find().type(Comment.class).returnAll().now();
Future<List<Comment>> comments = Datastore.find().type(Comment.class).returnAll().later();

Get

Twig allows for gets and batch gets via the load method taking a String key, long id, or collection of either.

Comment comment = Datastore.load(Comment.class, id);
Map<Long, Comment> comments = Datastore.load(Comment.class, Lists.newArrayList(1L, 2L, 3L));

Store

Storing objects can be done with either a single instance or collection. There are two mechanisms for saving to the datastore: store and update. The former is reserved for completely new instances whereas the later signals your intent that a model already exists in the datastore.

Models are cached in Twig when read through the same ObjectDatastore instance. Twig will not recognize a model is not in the datastore when you call update on one that you didn’t first load. To update Twig’s cache, you should call Datastore.associate on this instance. You will often need to do this on instances that have been serialized or been reconstructed for a request.

Datastore.store(myComment);
Datastore.associate(editedComment);
Datastore.update(editedComment);

Transactions

Twig supports datastore transactions via the beginTransaction method. All of the normal transactional datastore rules still apply, notably that you should only be modifying records in a single entity group.

Transaction transaction = Datastore.beginTransaction();
...
transaction.commit();

Limitations

The Twig module does not currently support Fixtures. It also wraps a non-final release of Twig 2.0 which has not yet finalized it’s new Activation API.