Re: [appengine-java] Using Restlet to access datastore.

2010-01-20 Thread Jeff Schnitzer
Thanks! Yup, I wrote it with some help from a couple friends who are also using Objectify for their appengine projects. I needed precise control over the loads and stores (particularly batch operations) in my app, Mobcast - basically Latitude for Facebook. Anticipating thousands of handsets makin

Re: [appengine-java] Using Restlet to access datastore.

2010-01-20 Thread Sandeep Sathaye
You can access datastore through JDBC also. Please check this out. http://www.cloud2db.com On Wed, Jan 20, 2010 at 12:43 PM, Ikai L (Google) wrote: > Wow, Jeff, this actually looks pretty good. Did you write this? This is > exactly the reason why we expose the low-level API! > > On Tue, Jan 19,

Re: [appengine-java] Using Restlet to access datastore.

2010-01-20 Thread Ikai L (Google)
Wow, Jeff, this actually looks pretty good. Did you write this? This is exactly the reason why we expose the low-level API! On Tue, Jan 19, 2010 at 7:28 PM, Jeff Schnitzer wrote: > Entities persisted with Objectify can be serialized in their entirety > (including keys) through GWT-RPC, so I'd be

Re: [appengine-java] Using Restlet to access datastore.

2010-01-19 Thread Jeff Schnitzer
Entities persisted with Objectify can be serialized in their entirety (including keys) through GWT-RPC, so I'd be surprised if you had any trouble using them with Restlet. I have a number of times rendered entity objects directly to JSON with JAX-RS, although there's no reason you couldn't do that

Re: [appengine-java] Using Restlet to access datastore.

2010-01-19 Thread Ikai L (Google)
As far as I know, there isn't a native Restlet API for datastore access. One more way to access the datastore is using the low-level API: http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/package-summary.html

[appengine-java] Using Restlet to access datastore.

2010-01-15 Thread Mohammad Abdurraafay
Hey, I'm quite new to Google App Engine. But yeah, I'm trying to use Restlet Framework to build RESTful Web Services. My question is, What are all possible ways to access datastore? I know about JDO and JPA. But I was wondering if I can use Restlet specific API to access datastore. Please, if anyo