On Sun, Feb 01, 2004 at 12:05:01AM +0100, Martin Stjernholm, Roxen IS @ Pike developers forum wrote:
An SMP machine won't be used efficiently anyway because of the interpreter lock.
Does it mean that multithreading in Pike is not effective and should be avoided if possible?
To me it seems a bit odd to have an implicit mapping between threads and backends;
What I want is to make sure that nothing in default backend will block application execution, especially callouts. Sure, I can do everyhing explicitly, but I've no control over external modules, which might be added later.
Also, I want that my application will be scalable in a way that I just can instaniate a copy of some object (which runs entire app) in separate thread, and it won't interfere with anything else (I mean, no lockouts etc) running in another threads (use of SMP would be ideal, but you say that it won't be used efficiently)...
Regards, /Al