Gents, Thanks for the info and helping me get it. I have another app
where index.yaml was being updated so that was making me paranoid. As
you have already guessed, in the other app everything is set to
direction: desc which I've not yet set direction on any queries in
this new app.

I'm learning more everyday!

Thx again,

Dave


On Jan 18, 6:11 pm, Bill <[email protected]> wrote:
> Yes, that was what I was getting at.  Dave, take a look at Ryan's
> article on index 
> building:http://code.google.com/appengine/articles/index_building.html
>
> Your index.yaml won't be updated unless your queries require developer-
> defined or composite indexes.  When you do have more complex queries,
> you can manually insert the required indexes or make sure you execute
> them on your dev server.
>
> On Jan 18, 2:14 pm, djidjadji <[email protected]> wrote:
>
> > These simple queries don't need entries in the index.yaml file.
> > For single attribute queries there are implicit indices constructed.
> > Even is you filter multiple times for equality you don't need an
> > index.yaml entry, and maybe then only when you want a DESC sorting.
>
> > If the production server gives the correct result without raising a
> > NeedIndexError you use some implicit index.
>
> > 2009/1/18 Dave <[email protected]>:
>
> > > request.user.invites_in.filter('invited_person =',request.user)
> > > request.user.invites_out.filter('person_inviting =',request.user)
> > > user.connections.filter('user =',request.user)
> > > Dave
>
>
--~--~---------~--~----~------------~-------~--~----~
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