in reply to Threading vs perl
Why does any language need threads ? Your are either against threads at all or not, because if threads are needed in C/C++/Java/Python/Lisp/whatever, they're needed in Perl as well.
Ever had to write a GUI that does background processing in a sane way ? Ever had to interface to synchronous IO, and in the meantime stay responsive / do other things ? Ever had to speed up computations by splitting disk/IO access and the core algorithms ?
The current implementation of threads in Perl 5.8.1+ is stable enough, I think, and I personally used it in an application where a solution w/o threads or with processes would be slower, and much more cumbersome. I hope for even more improvements in the threading modules of Perl, of course.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Threading vs perl
by poqui (Deacon) on Jun 20, 2005 at 18:39 UTC | |
|
Re^2: Threading vs perl
by Eyck (Priest) on Jun 20, 2005 at 12:10 UTC | |
by spurperl (Priest) on Jun 20, 2005 at 13:12 UTC | |
by Eyck (Priest) on Jun 20, 2005 at 13:42 UTC | |
by ruoso (Curate) on Jun 20, 2005 at 16:20 UTC | |
by chromatic (Archbishop) on Jun 20, 2005 at 18:00 UTC |