additional note:

If you calculate resources you have to differ between 'one-time-use'
and 'huge-traffic-use'.

At first request Google makes your code available in cache. The
resources needed for this transfer (unpacking of zip etc) are needed
only a single time as long as there are other requests coming in.

That's the reason the first request may take 4 seconds answer time
whereas following requests are answered much faster.

If you want to test what resourced are needed in case of huge traffic
you have to make sure that your requests are repeated faster then 2-3
seconds. Otherwise the cached data might already have been deleted in
the meantime.

So using a professional framework like Django slows down only the
first request for 1-2 seconds. The following requests are answered as
fast as without Django.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to