Sign in

Google Cookbook - Google App Engine

Bypass 500 put/delete and 1000 get limit
Posted by lugiebear on Mon 28 Sep 2009 in Datastore
User ratings:
Check out the attached source code. It provides the following methods:

  public Map get(DatastoreService datastore, List keys);
public Map get(Transaction txn, DatastoreService datastore,
List keys);
public List put(DatastoreService datastore, List entities);
public List put(Transaction txn, DatastoreService datastore,
List entities);
public void delete(DatastoreService datastore, List keys);
public void delete(Transaction txn, DatastoreService datastore,
List keys);

Attached files
DatastoreHelperImpl.javaViewDownload

Comments (0)

Sign in to add comment.