This post originated from an RSS feed registered with Python Buzz
by Ian Bicking.
Original Post: App Engine and Pylons
Feed Title: Ian Bicking
Feed URL: http://www.ianbicking.org/feeds/atom.xml
Feed Description: Thoughts on Python and Programming.
So I promised some more technical discussion of App Engine than my last two posts. Here it is:
Google App Engine uses a somewhat CGI-like model. That is, a script is run, and it uses stdin/stdout/environ to handle the requests. To avoid the overhead of CGI a process can be reused by defining [...]