RE: Python, COM Servers, and Multi-Threading

2005-11-07 Thread Stefan Schukat
Hi, you get best performance if you make your servers local servers, since then every interpreter runs in ist own process. If you make it an inproc server you synchronize all threads/CPUs with the GIL. Even better multithreading support you will get if you mark your server to run in an multithre

Re: Python, COM Servers, and Multi-Threading

2005-10-10 Thread Steve Holden
Carl Waldbieser wrote: > I have been considering using Python and the Reportlab library for > generating PDF reports for the back-end of a web based application. The > application runs most of its background tasks on a dedicated server that is > Windows based (Win2K or Win2k3). The program that l