Thanks, Mike.  I'm afraid I don't understand your "total number of
looks ups" calculation.

What would the query(ies) look like, syntactically?

And would those queries eliminate the unwanted ReferenceaProperties?


While we are discussing memory, wouldn't it be a good practice to set
the query to None after you're done using it?  Wouldn't that clear out
some memory?

e.g.

query = myData.all().filter(....).fetch(....)

for row in query:
    do stuff

query = None

newQuery = myOtherData.all().....

for row in newQuery:
    Do more stuff

newQuery = None

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