Sign in

Google Cookbook - Google App Engine

Posted by lugiebear on Mon 28 Sep 2009 in Datastore
Check out the attached source code. It provides the following methods:

  public Map get(DatastoreService datastore, List keys);
public Map ...
Posted by robi123 on Wed 23 Sep 2009 in Datastore
def autoretry_datastore_timeouts(attempts=5.0, interval=0.1, exponent=2.0):
"""
Copyright (C) 2009 twitter.com/rcb

Permission is hereby ...
Posted by g.fawcett on Fri 18 Sep 2009 in Datastore
Google occasionally schedules maintenance periods when the datastore and memcache become read-only. If left unhandled, this causes your users to ...
Posted by arachnid@notdot.net on Sun 23 Aug 2009 in Datastore
The usual pattern used for counters that may have a high rate of updates is to use sharding. This scales ...
Posted by marcos.placona on Tue 14 Jul 2009 in Datastore
This is the easiest way ever to access a random record on the datastore without having to go through the ...
Posted by billkatz on Tue 30 Jun 2009 in Datastore
A simple full text search module has been released under the MIT license.

Full article is here:
http://www.billkatz ...
Posted by tytung on Mon 15 Jun 2009 in Datastore
GoogleFileService is based on Google App Engine for Java, and its aim is to provide data models and APIs for ...
Posted by rodrigo.moraes on Thu 11 Jun 2009 in Datastore
If you need to store a list of related values in a single property, this special property can be useful ...
Posted by meepmeepmeepenator on Wed 03 Jun 2009 in Datastore
When working with Datastore, it is often desirable to share Model instances among functionally distinct parts of your application, in ...
Posted by otto.hartvich on Mon 01 Jun 2009 in Datastore
App Engine SDK 1.2.1

Using @NamedQuery annotation in the JPA entity class be sure that you use fully ...