Cool idea for a site. There have been various reports in the past of indices being off. Sometimes pulling up the entities and calling put() on them clears it up.
Some links from the archives. There are more, I think. http://groups.google.com/group/google-appengine/browse_thread/thread/3d0ce8d09242db60/e3b631b1f6e752a3?lnk=gst&q=index+put#e3b631b1f6e752a3 http://groups.google.com/group/google-appengine/browse_thread/thread/c20439877edc2656/afb17918fc38284d?lnk=gst&q=index+put&pli=1 johnP On Jan 5, 9:37 am, Natalie Gordon <[email protected]> wrote: > Is there any update on this? > > For multiple queries with a count less than 1000 the value returned > by .count() is different from the actual data. Could someone look into > this? > > Thanks! > > On Jan 4, 11:31 am, Natalie Gordon <[email protected]> wrote: > > > > > Hi, > > > With this query I get the value 875: > > > active_cards_count = MemberFCItem.gql("WHERE member = :1 and > > is_active_in_hand = True", member).count() > > > When I look at all the data in the table with this query: > > > cards = MemberFCItem.gql("WHERE member = :1", member) > > count = 1 > > for card in cards: > > logger.info(str(count) + " " + str(card.is_active_in_hand)) > > count = count + 1 > > > There are 948 cards all with value True. > > > Could someone look into this? Could there be a corrupt index? My app > > id is mylenguajero. > > > Thanks, > > Nataliewww.lenguajero.com
-- 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.
