On Jun 8, 12:12 pm, Luca <[email protected]> wrote: > Suppose an app takes 10ms to produce a 50k response. The response might be > for a mobile client, with slow connection, and take 1s to transfer. > Is the instance tied up for the whole 1s, or is the instance tied only for > 10ms, and then there is some independent buffering that takes care of > delivering the response to the mobile browser of the client?
The instance is only in use until it returns a response; the transfer of the response to the client is done by infrastructure outside of your application and doesn't tie up your instance. -- 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.
