On Wed, 2002-11-13 at 20:00, Hancock, David (DHANCOCK) wrote: > Thus, on reasonable hardware, there are upwards of 120 python WebKit > processes running, 10 per developer, with nobody's toes getting stepped on.
I actually believe it's more like 20 processes, with lots of threads. On Linux threads happen to look like processes (well, they are processes), but that's an implementation detail. On a different OS it'll probably look more sane. You can also change AppServer.config/StartServerThreads to something smaller than 10, since in a development environment you'll seldom use more than one or two threads. I don't know if there's any significant performance issue one way or the other... though I do notice looking at ThreadedAppServer that the threads just poll a queue for a request instead of waiting for any sort of event, which seems bad -- maybe threading.Event should be used there. Has anyone paid attention to the performance of the AppServer when its idle? Is this polling a problem? Ian ------------------------------------------------------- This sf.net email is sponsored by: Are you worried about your web server security? Click here for a FREE Thawte Apache SSL Guide and answer your Apache SSL security needs: http://www.gothawte.com/rd523.html _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
