My Python High Replication Datastore application requires a large lookup table of between 100,000 and 1,000,000 entries. I need to be able to supply a code to some method that will return the value as
I have an Entity called Movie. I want to have a get_or_create method for the Movie entity. Right now each Movie entity is in its own Entity group.
I\'ve searched around for answers to this question, but not found anything quite on the money. I\'d be really interested to hear people\'s thoughts. Here goes:
Say I have an Entity A and an Entity B, A is a parent of B, that开发者_运维技巧 is, many B\'s can be part of a single A\'s entity group.
Following up on my earlier question regard开发者_C百科ing GAE Datastore entity hierarchies, I\'m still confused about when to use entity groups.
Short ques开发者_C百科tion: Is the parent of an entity group included in that entity group (i.e. can a transaction affect the parent of an entity as well as the entity itself)?
I have a web application that allows a user to publish a small blurb when one of their articles goes live on their site. Right now I am able to post to the user\'s wall using a session_key I saved in
I am building an app based on google app engine (Java) using JDO for persist开发者_StackOverflow中文版ence.
UPDATE: After further testing, it seems this issue affects all child entities in my entity group. My root parent for all these different instances is User kind, which is my own creation, not the built
I am trying to wrap my head around Entity Groups in Google AppEngine. I understand them in general, but since it sounds like you can not change the relationships once the object is created AND I have