Hi, i would like to deeper understand, how datastore calls counter
works.
Trying out simple query:
samples = db.GqlQuery('SELECT * FROM Sample')
produces 6 Datastore API Calls, whats the reason for this?
Results:
Write 100 instances = 100 API Calls, CORRECT
Count 100 instances = 100 API Calls, CORRECT
Read 100 instances = 6 API Calls, ???
Delete 100 instances = 13 API Calls, ??? - uses Select also...
My very simple model:
class Sample(db.Model):
content = db.BlobProperty()
& content fore every instance is always 100B long.
Somebody knows?
Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---