Re: [appengine-java] Learning the datastore

2011-02-22 Thread Ikai Lan (Google)
I think one of the best ways to start learning about the datastore is to use the low-level API: http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/package-summary.html We changed our docs recently to show examples using this. As far as open source projects go, y

Re: [appengine-java] Learning the datastore

2011-02-22 Thread Ronmell Fuentes
Hi John, acording to my expertise in DataStore, you'll get more know-how when running the example you'll see the creation of the files and all the data that datastore deals with. try running the helloWorld example and try to 1. create one own Object to be stored (kinda POJO); 2. create a Persistenc

[appengine-java] Learning the datastore

2011-02-22 Thread John
I've been reading the App Engine docs to prep myself for for a new project using the datastore. When learning a new technology I like to look at working code vs. just the examples in the docs. Does anyone know of an active open source project that I can download and use to accelerate my learning