On Fri, Feb 21, 2014 at 5:19 AM, David <[email protected]> wrote: > > iii) other information: When I deploy, this index entry was in > datastore-indexes-auto.xml too, with source="auto". By rule, the index > should have been generated. >
You're 100% correct. If the same index entry is in *datastore-indexes-auto.xml* GAE should be automatically building the index for you, there's no need to add it to *datastore-indexes.xml* as well. Can you try changing the version setting of the application, then reuploading it to the same application ID on App Engine? Sometimes App Engine gets "stuck" on a certain configuration; it may recognize the new index in a new version. If you're using Eclipse, you can change your application's version by going into the *App Engine Project Settings* pane. On Fri, Feb 21, 2014 at 5:19 AM, David <[email protected]> wrote: > iv) quantityFrom is a Double type. Can do an index from a double type? > You can do an index from any Java numeric type: int, float, double, and so forth (including their object wrappers such as java.lang.Integer, Float, Double, etc). ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
