Hi all,

just a clarification.
Is it normal that indexes are auto-generated only for query with filter 
properties??
I mean, this first query will generate an index:

            Query query = pm.newQuery(Stat_1.class);
            query.setFilter("timestamp >= " + now);       
            query.setOrdering("timestamp desc, value desc");


while the following will not:

            Query query = pm.newQuery(Stat_2.class);
            query.setOrdering("value desc");

Is this normal??
Should I configure an index myself for optimize Stat_2 queries 
executions..??

Thanks


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" 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-java?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to