So I am currently performing a test, to estimate how much can my Google app engine work, without going over quotas. This is my test:
- I have in the datastore an entity, that according to my local dashboard, needs 18 write operations. I have 5 entries of this type in a table.
- Every 30 seconds, I fetch those 5 entities mentioned above. I DO NOT USE MEMCACHE FOR THESE !!!
That means 5 * 18 = 90 read operations, per fetch right ? In 1 minute that means 180, in 1 hour that means 10800 read operations..Which is ~20% of the daily limit quota...
However, after 1 hour of my test running, I noticed on my online dashboard, that only 2% of the read operations were used...and my question is why is that?...Where is the flaw in my calculations ?
Also...where can I see in the online dashboard how many read/write operations does an entity need?
Thanks