On Thu, 2005-10-06 at 18:36 -0400, Uri Guttman wrote: > even the people who wrote the threads code in perl disavow them, so i > wouldn't even try to do any heavy threading in perl. instead i recommend > an event loop server which is stable, faster and easier to code for in > most situations. you can use stem, poe, event.pm or even io::select as > the main event loop.
The problem is that I'm writing an RPC server that itself needs to make RPC calls. I can't be blocking on new clients connecting or existing clients sending requests while the server-side procedure is making its own RPC call out to somewhere else. I don't think an event loop would help, because a computationally slow procedure or one that makes a further RPC call would still block other clients. -- Jeremy _______________________________________________ Boston-pm mailing list [email protected] http://mail.pm.org/mailman/listinfo/boston-pm

