On Sun, Jan 12, 2014 at 12:43 PM, Alexandre Cassimiro Andreani < [email protected]> wrote:
> Is there some difference on cost and performance on Appengine with > google-api-services-datastore-protobuf instead of > com.google.appengine.api.datastore? > Those are two different libraries and intended for different use cases. *com.google.appengine.api.datastore* is intended for applications running on App Engine, while *datastore.protobuf* is intended for applications (not necessarily hosted on App Engine) to access the Cloud Datastore. Performance-wise, if your application is hosted on App Engine it's better to use *com.google.appengine.api.datastore*, because using the datastore through the Cloud Datastore service (*protobuf*) involves using an App Engine app as a translation layer. See https://developers.google.com/datastore/pricing . ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
