vote up 4 vote down star
1

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

flag

62% accept rate
or have different datastores for different versions of the same app? – Thilo May 1 at 12:50
and the same question for memcached – Thilo May 1 at 12:51

2 Answers

vote up 5 vote down check

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).

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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