Eli,
Do you know how you can do batch writes with JDO objects? PersistenceManager.makePersistentAll() just calls makePersistent on each object individually so it's not batched. I also tried calling DatastoreService.put() and passing a list of Entity objects. The Entity objects were created from the Keys of the JDO objects I modified. Calling put() wrote all 5 objects at once, but there was no linkage between the Entity and the JDO object. So it wrote an "empty" object to the datastore during put() and wrote the modified JDO object out when the PersistenceManager was closed. Do you know how to make this work besides rewriting the app to not use JDO? :) Thanks. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
