This is a general App Engine data store indexing question. The data store automatically build indexes that can be used for simple single property queries (queries that do not involve composite keys).
Does the overhead in generating this index vary on the underlying data type of the entity's property ?
Essentially my question boils down to:
def Person(db.Model):
name = db.StringProperty()
rollnumber = db.IntegerProperty()
Is the indexing overhead with respect to the property rollnumber lesser when compared to that of name?