I have a very simple kind and am trying to sort it with a descending
sort on its datetime property.
Piece of cake. I caused the index for it to be generated
automatically and then tried a new update.
With that one index I always get a 500 server error.
Here's the kind:
class FacebookApp(db.Model):
appname = db.StringProperty(required=True)
added = db.DateTimeProperty(auto_now_add=True)
numusers = db.IntegerProperty(default=0)
by = db.StringProperty()
And here's the index:
# Used once in query history.
- kind: FacebookApp
properties:
- name: added
direction: desc
So why won't this upload?
I only have 47 indexes so far so I'm well away from the 100 limit.
My app is 'jnana'.
I'm going to need a few different indexes for this kind and I'm stuck
not being able to do this.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---