Hi,

If I have

class MyModel(db.Model):
     field1 = db.StringProperty()
     field2 = db.StringProperty()
     ......
     words = db.StringListProperty()

and one of the rows has
field1 = "f1"
field2" = "f2"
words =["list", "with", "five", "hundred", "words"]

and query (a)
query = MyModel.all().filter("field1 =", "f1").filter("field2 =",
"f2").filter("words =", "with").filter("words =", "five").filter
("words =", "words").fetch(10)
which should return the row above

or query (b)
query = MyModel.all().filter("field1 =", "f1").filter("field2 =",
"f2").filter("words =", "with").filter("words =", "five").filter
("words =", "notinlist").fetch(10)
which should return no rows.

Would such a query result in an "exploding index" ?


Thanks
S. Sriram
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to