Is there a elegant way of using a ListProperty for storing a subclassed db.Property type? For example, the FuzzyDateProperty from this example uses get_value_for_datastore() and make_value_from_datas
Any recommendations on how to best access the Google App Engine Datastore?Via JDO, JPA or the native API?
I\'ve got an appengine app with two simple kinds of entities - ParentEntitys and ChildEntitys.Each ParentEntity has a List of owned ChildEntitys.
I\'m new to python, django and google app engine. All great tools and have been enjoying working with them.
I understand the theory of sharding values in Google App Engine,as outlined here: http://code.google.com/appengine/articles/sharding_counters.html
I\'m trying to determine the most efficient way to create a votable entity on GAE\'s datastore.I would like to show the user a control to vote for th开发者_C百科is entity or an icon indicating that th
I\'m a Python & App Engine (and server-side!) newbie, and I\'m trying to create very simple CMS. Each deployment of the application would have one -and only one -company object, instantiated from
I am working with GAE and have a user table. Now I want to model friend relationships between users. I am thinking of having 3 properties user1, user2 and request_status, but the problem is in queryin
I\'ve got a huge problem - multiple entities in my datastore of the same kind have the same id!Their keys are Keys, but I have been assuming that key.getId() will return a number th开发者_StackOverflo
I want to implement both active search, where keyword queries matches text content, and passive se开发者_如何学运维arch, where new content matches stored queries, on my google app engine application.