Sebastian/John,
Thank you very much for your feedback.
John: I initially missed the nuance of WSGI scripts being function
calls. I suspect your tip has saved me a lot of pain :)
Regards,
Malcolm
--
http://mail.python.org/mailman/listinfo/python-list
Sebastian Bassi wrote:
On Tue, Mar 16, 2010 at 2:18 PM, wrote:
I have a few dozen simple Python CGI scripts.
Are there any advantages or disadvantages to rewriting these CGI scripts as
WSGI scripts?
It depends of the script. WSGI should be faster since you don't start
a Python instance for e
On Tue, Mar 16, 2010 at 2:18 PM, wrote:
> I have a few dozen simple Python CGI scripts.
> Are there any advantages or disadvantages to rewriting these CGI scripts as
> WSGI scripts?
It depends of the script. WSGI should be faster since you don't start
a Python instance for each call (as in CGI).