Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is that somehow possible to access one datastore? Or access one app from different domains.

share|improve this question
1  
or have different datastores for different versions of the same app? – Thilo May 1 '09 at 12:50
1  
and the same question for memcached – Thilo May 1 '09 at 12:51

5 Answers

up vote 10 down vote accepted

Every app has its own datastore and memcache (shared among all versions of that app). It seems not possible to share datastores between applications right now (unless you provide some web service for that), but that would be a nice feature to have, so maybe you should file a feature request with Google vote for it.

As for domains, you can associate your app with domains managed by Google Apps. Multiple domains for the same application should be no problem (except for SSL certificates).

share|improve this answer

You can have multiple versions running at the same time as stated here:

You could create two different apps that run simultaneously; they would each share the same database and memcache.

In the app.yml file just specify version: 1 and version: 2

They would have two different urls:

Using Domain masking, you could then direct from:

share|improve this answer

Every version of an app is backed by the same datastore. If you want to limit access for individual requests, you'll need to add a field to your model to enforce that restriction. There are low level hooks in the datastore API for this sort of thing, if you want to go that far.

And yes, you can add a single App Engine app to multiple domains - even in multiple Apps accounts.

share|improve this answer

You can have multitenancy using the Namespace Java API

share|improve this answer
Don't think this is related. OP wants multiple applications to share one datastore, instead of same application with multiple datastore (in this case, namespace is useful) – Hai Bi Mar 9 at 23:56

Kyle's solution would work, but App Engine was never designed to be used in this way. So if you architect your app(s) to rely on this kind of setup and Google clamps down for whatever reason then you'd be screwed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.