On Fri, Sep 26, 2014 at 8:35 AM, Iván Cachicatari <
ivan.cachicat...@nubispartners.com> wrote:
>
> I want to share the Datastore to another App, is there a way to do that?
>



Do you want to share the datastore with another App Engine application or
to an external application?

If it's to another App Engine application, using the Remote API
<https://cloud.google.com/appengine/docs/java/tools/remoteapi>would be the
simplest way to handle it, but it'll be slightly slower compared to regular
datastore access. The best way would be to merge both applications and run
them under a single application ID (thereby sharing that application ID's
datastore), and isolate them by running the apps as separate modules:
https://cloud.google.com/appengine/docs/java/modules/

If you want to share the datastore with an external application, you can
either write your own API to access the datastore (you'll also have to
implement authentication and security) or the external app can access the
datastore via Cloud Datastore: https://cloud.google.com/datastore/



-----------------
-Vinny P
Technology & Media Consultant
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 google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.

Reply via email to