in reply to Re^3: Sharing large data structures between threads
in thread Sharing large data structures between threads
Unlike the so-called "Perl threads" (which are not actually real threads but only the windows process emulation (see section of same name for more details) ported to UNIX, and as such act as processes), Coro provides a full shared address space, which makes communication between threads very easy. And coro threads are fast, too: disabling the Windows process emulation code in your perl and using Coro can easily result in a two to four times speed increase for your programs.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Sharing large data structures between threads
by BrowserUk (Patriarch) on Mar 07, 2011 at 19:36 UTC |