On Tue, Jul 10, 2012 at 10:11 AM, Barry Hunter <[email protected]> wrote: > > Jon McAlister here: > https://groups.google.com/group/google-appengine/msg/2949285edc35fc8f > seems to suggest that there is a hard 10req/sec limit enforced by the > scheduler.
That's a concurrency limit. If each request took 1000ms, they would be equivalent... however, each request that we're talking about is ~50ms. What I expect is to see throughput of 1000 / 50 * concurrency = (20 * concurrency) requests per second. If concurrency is 10, that would be 200 QPS. Jeff -- 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.
