I have not found a good example of how to update datastore, so I am doing manually delete the entities and then insert again I know is completely awful for this reason I think it could be a better way, there exists? Btw I am using Java.
To retrieve an entity identified by a given key, pass the Key object to the DatastoreService.get() method:
// Key employeeKey = ...;
Entity employee = datastore.get(employeeKey);--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengi...@googlegroups.com.
To post to this group, send email to google-a...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.
It seems like I finally could retrieve an entity and modify the content, my actual doubt is how can I retrieve more than 1,000 entities, because I got a warning because I have more than 1,000 entitites in a kind, how can I make this?