[google-appengine] Query.fetch(limit) returning (limit - 4) rows, when more than (limit) rows exist.

2008-09-23 Thread Adam Blinkinsop
Is anyone else experiencing this problem? I'm attempting to clear out my datastore by fetching rows and then `db.delete`ing them, and I'm noticing that the results I get from my query is always four less than I ask for. --~--~-~--~~~---~--~~ You received this messa

[google-appengine] ListProperty and Indexes

2008-10-28 Thread Adam Blinkinsop
I've got a search application up (see http://beta.mtgcauldron.com/) that uses a ListProperty on each object as a list of stemmed words to search by. This works great for simple searches (http:// beta.mtgcauldron.com/search?q=white+2%2F2 and http://beta.mtgcauldron.com/search?q=black+enchantment r

[google-appengine] Re: ListProperty and Indexes

2008-10-28 Thread Adam Blinkinsop
I attempted to get around this by using a GqlQuery with only where clauses of the form "index = :1 AND index = :2 AND ..." (yes, "index" is the name of my StringListProperty), and a single ORDER BY clause for "rating DESC", but I have the same problem with it wanting an index on [index, index, rat