> > I am working on optimizing datastore calls, and saw that the cost of > datastore read calls is 6 cents per 100,000 entities worth of reads. If I > do a datastore.Get call for an entity that isn't in the datastore, does > that count as a datastore read, or is it only considered a datastore read > if the entity is actually in the datastore? >
each .get() counts as one read operation. plus query counts dbreads as number of entities, restored from datastore. -- 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/502a3080-d915-43b6-9f0a-5bb286490866%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
