I am looking into different ways to implement multi tenant application – one of which is using AppEngine namespace API.
One of the requirements is that we will be able to access data of different tenants, but each tenant can access only it own data. This way we will be able to see trends that happen over several tenants.
Is it possible to do such thing using AppEngine namespace API ?
Thank you,
Ido.
I manage to do that, partly, by using the
NamespaceManager.setmethod to access specific tenant data.I can select one tenant data at a time but that’s fine by me.
Ido.