in reply to Re^2: The State of Parallel Computing in perl 2007?
in thread The State of Parallel Computing in perl 2007?

I use POE::Wheel::Run to spawn four Perl programs.
  1. A web server built from HTTP::Daemon. This provides a browser-based GUI. This web server also spawns programs that can get content from other web servers.
  2. A live link to a large CAD program.
  3. A live link to a large circuit simulator.
  4. A terminal that provides user messages and a command line, for development and for cases where the GUI doesn't have deep enough functionality.
I hadn't thought about this program as parallel processing until I saw your question. I have only recently begun running the application on multi-cpu machines.

The program uses message passing through several mechanisms:

It should work perfectly the first time! - toma
  • Comment on Re^3: The State of Parallel Computing in perl 2007?