in reply to Adding parallel processing to a working Perl script
Personally - I would be VERY wary of trying to retrofit threading. There are many big scary bugs that are lurking within to bite you. I would strongly recommend that you assume you'll need a rewrite from scratch, and then borrow from your original source.
It at least looks like you're dealing with an implicitly parallel problem, so I would suggest:
Here's a really basic template for what I mean: A basic 'worker' threading example.
(Not to denigrate the perfectly sound advice other Monks have offered. This is purely my opinion as to how I would approach your problem)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Adding parallel processing to a working Perl script
by Jim (Curate) on Apr 26, 2014 at 06:15 UTC | |
by Preceptor (Deacon) on Apr 28, 2014 at 10:37 UTC |