[Web-SIG] A query for hosting providers

2005-03-27 Thread Ian Bicking
I'm wondering -- and this is mostly directed to the hosting providers (Remi, Sean...) -- what are the problems with providing commodity-level hosting for Python programs? I can think of some, but I'm curious what you've encountered and if you have ideas about how to improve things. Some things

Re: [Web-SIG] A query for hosting providers

2005-03-27 Thread michael bayer
if you run multiple virtual hosts out of Apache, mod_python by default creates new subinterpreters, via Py_NewInterpreter, for each virtual host. this can also be set up per apache directive, an arbitrary name, or within individual directories. although how well Py_NewInterpreter separates

Re: [Web-SIG] A query for hosting providers

2005-03-27 Thread Ian Bicking
michael bayer wrote: if you run multiple virtual hosts out of Apache, mod_python by default creates new subinterpreters, via Py_NewInterpreter, for each virtual host. this can also be set up per apache directive, an arbitrary name, or within individual directories. although how well Py_NewI