The indexes listed in dashboard are only composite indexes, the entities may have single indexes as well.
class A(db.Model): p = db.db.StringProperty() In this model, it has an index on the p property, so that you can query on it. If you don't need it, you should add an indexed=False param: class A(db.Model): p = db.db.StringProperty(indexed=False) For those entities which already in datastore, you can retrieve and save them to remove their indexes. ---------- keakon -- 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.
