Hi there, I'm trying optimise my app and I save simple object as a entity with two properties (key, String data) into datastore. I don't need to index the 'data' property at all but I have notice ev ery write does this:
PropertyValue gae/datastore/count 1 gae/datastore/entity_writes 1 gae/datastore/index_writes 3 gae/datastore/size 1 I wonder if it's possible (and also if it makes any sense) to disable indexing of the 'data' property - as far as I understand, String fields are indexed by default... (I didn't specified any indexes manually). Just a note - would like to avoid using objectify as I'm trying to strip my app of majority of external dependencies to improve my instance spin-up time (which now sits at 3 seconds...) Thanks for any advice! -- 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 https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/0d3f2751-ff0d-4dc7-a217-fbd0226d7bb5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
