OK, now that my quota has been reset, I can see things a bit more clearly.
It seems the count for API calls is a bit more aggressive than I originally
thought. My code just indexed 88 documents and accumulated about 1,200 of
the 20,000 allotted calls.
Document.Builder builder = Document.newBuilder();
builder.setId(id);
builder.addField(Field.newBuilder().setName("name").setText(name));
builder.addField(Field.newBuilder().setName("description").setText(description));
Document document = builder.build();
PutResponse putResponse = index.put(document);
Is that a total of 12 API calls or just 1?
Thanks,
Mike
On Monday, April 15, 2013 12:13:30 PM UTC+3, Mike Dougherty wrote:
>
> Hello,
>
> I am using the Search API for an application. I understand that it is
> limited to 20,000 calls per 24 hours on a free application. But I expected
> that limit to not be a hard limit once we are using a paid application. How
> do I remove this limit?
>
> Also, it seems that the limit was not reset when the other quotas were
> reset this morning. I am pretty confident that my application has not made
> 20,000 calls in the last 2 hours.
>
> Thanks,
> Mike
>
>
--
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 http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.