in reply to The State of Parallel Computing in perl 2007?
Unlike many things in parallel programming, memcached is easy.
POE::Wheel::Run will allow you to use multiple processes, which should provide parallelism on a multiprocessor machine. To use it in windows, I used Cygwin since POE::Wheel::Run required the more full-featured fork/exec.
Another easy way to do parallel computing is to use a web server. One program can make requests to multiple servers, or a single server with multiple CPUs, and get them all working on parts of a problem. You can use POE to control the flow of making multiple web requests and synching back up when they return.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: The State of Parallel Computing in perl 2007?
by jettero (Monsignor) on Jan 22, 2007 at 11:58 UTC | |
by toma (Vicar) on Jan 22, 2007 at 16:52 UTC | |
|
Re^2: The State of Parallel Computing in perl 2007?
by perrin (Chancellor) on Jan 23, 2007 at 18:55 UTC | |
by toma (Vicar) on Jan 24, 2007 at 09:31 UTC | |
by perrin (Chancellor) on Jan 24, 2007 at 14:54 UTC | |
by jettero (Monsignor) on Jan 25, 2007 at 22:14 UTC |