On Mon, Aug 27, 2012 at 1:47 PM, FFFFFFFab <[email protected]> wrote: > > I'm a beginner in Python and then in Pyramid framework. I'm not sure about a > thing : is a pyramid project resident in memory after the first http request > transmitted by the http server and mod_wsgi ?
Yes. In most typical deployments (i.e. everything except CGI), your Python web app will be running inside a long-lived process. (This is different from what the usual PHP model, where everything only lives for the duration of the request.) -- Ronan Amicel «« Twitter overload? »» Get your daily summary at http://focus.io/ -- You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en.
