On Sat, 2003-02-22 at 19:04, Georgij wrote: > Recently I was asked my friend who isn't a Python programmer, how to > make an optimal use of webware on his web-hosting? > In other words, how to set so as to make webware applicable only from > the own space (i.e., own cgi-bin, httpdocs) of a client?
Each client should have their own AppServer process, running probably under their user account. You don't need a complete Webware installation for each user, but Webware/bin/MakeAppWorkDir.py can make a sort of minimal copy. If you're using Linux it looks like there's a crazy number of processes used this way, but it's not as bad as it looks. Under Linux each AppServer will look like about 12 processes, because each thread looks like a process. But I don't think the overhead is really that bad, and you can turn down the number of threads if you want. -- Ian Bicking [EMAIL PROTECTED] http://colorstudy.com 4869 N. Talman Ave., Chicago, IL 60625 / 773-275-7241 "There is no flag large enough to cover the shame of killing innocent people" -- Howard Zinn ------------------------------------------------------- This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. The most comprehensive and flexible code editor you can use. Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. www.slickedit.com/sourceforge _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
