App Engine provides a way to set the current “namespace”. Is this a way to be able to easily reference variables, and thus not always have to insert database lookups in one’s code?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not quite.
Namespacing is useful when you have an appengine app that you want to deploy to serve discrete groups data. You can read more about it here.
With namespacing, you partition your appengine app’s stuff (datastore, memcache, and taskqueue) into a bunch of separate groups where data, row keys, tasks, etc, don’t cross-contaminate or have name/key collisions.