GAE is really driving me mad.
I do have an Object which contains a List with about 3.000 childs.
No matter what I do, I can't simply delete this object with it's
childs.
Locally everything works fine. Very quick deletion.
But on App Engine it just times out with the 30sec limit and none of
the objects get deleted.
Tried this:
PersistenceManager pm = PMF.get().getPersistenceManager();
Query query = pm.newQuery(MainObj.class);
query.deletePersistentAll();
pm.close();
Tried this:
List<Genre> genres = Genre.findAll();
for(int i=0; i<20; i++) {
genres.get(0).getStreams().remove(i);
}
Do I really have to delete all the objects manually inside the Data
Viewer?!
Would appreciate any help
Thanks
Arny
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---