--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
--
longPropName = db.IntegerProperty(name='i', indexed=False)
Also choose the Model name as short as possible and the application
name in the appspot.com domain.
At the moment you can specify that you only want the ascending index.
It's both or none.
If the property is only used in a combined index you must specify that
"indexed=True".
2010/6/28 Nate Bauernfeind <nate.bau...@gmail.com>:
It would be a nice addition to GAE if we can have a section in
index.yaml where we make all the needed indices explicit. No more
implicit indices. To be compatible with the current implementation of
GAE this section should be optional. The developer chooses if he wants
implicit property indices that he partially can disable with the
"indexed" argument of the Property. Or that all the indices are
explicit. Maybe then we don't need an index on a property if we only
use it in a complex query.
The development server will create the explicit index definitions if
needed, and the explicit-section is specified in index.yaml.
GAE team is this possible? If yes, I will make an issue for this feature.
2010/7/2 Nate Bauernfeind <nate.bau...@gmail.com>: