I am doing a simple prototype to figure out the app engine datastore using * JDO*.
The protoype included a single entity/table (Stock) with following attributes: Code, Name, Group and Type - all Strings Also, there is a cron job with backend to download a zip file, unzip it, parse and upload it to Stock table. It is working fine but I see that there 8 datastore write ops for each record inserted. I understand that for each field there is an associated index created which gets updated for each record insert/update. I'd like to know how I can avoid creating unnecessary indexes when using JDO, I just need index on two of the attributes. I tried using setUnindexed<Property> but that didn't appear to help. Thanks -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/hQG2s6iFgX4J. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to google-appengine-java+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.