What exactly is google app engine’s key class? I’m looking at the documentation but it’s not really helping. (Python)
What exactly is google app engine’s key class? I’m looking at the documentation but
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.
Every entity has either an integer id or a name (string) that uniquely identifies it. The key is made up of four basic parts: your app id, the namespace, the kind name, and the integer id or name. If an entity is a child entity (ie a member of an entity group) the key also contains the parent’s kind and id / name.
So a key looks something like this:
AppId:Namespace:[parent Kind:id|name:]Kind:id|nameKeys are discussed in the context of entity groups, and there is a description in the article about how entities are stored.