Hi, I'm currently running into an exploding index problem with the
following model:
class Keywords(db.Model):
    owners_saved = db.ListProperty(db.Key)#list of user keys who saved
this keyword
    topics = db.ListProperty(db.Key)#list of keys of topic objects
    sort1property = db.IntegerProperty#need to sort by this

Keywords can mark as saved, and I need to be able to query for
keywords a user has saved that are in a specific topic area.  I'm
running into an exploding index problem because I need to be able to
query by a composite index on two list properties (owners_saved and
topics)...both list properties can potentially become really long.

Can anyone suggest a way for me to be able to avoid the exploding
index problem AND be able to sort by property?

Thanks in advance!

-- 
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.

Reply via email to