in reply to Re: Thread Advice
in thread Thread Advice

I am planning on running the upgrade once a week. In mutiple locations. I have not used parrellizaing before. How do I do it? :)
My current script uses thread pool, but I notice a occasional problem, thats why I was asking about the recommend style for this type of project.

Replies are listed 'Best First'.
Re: Re: Re: Thread Advice
by hardburn (Abbot) on Jun 12, 2003 at 17:59 UTC

    You're already doing parrellization. Any program that has portions running together is using parrellization. Though it isn't true "parrellisim" unless you're on a multi-processor machine, a cluster, or one of those new-fangled hyperthreading processors, but that's a pesky detail that I'm ignoring for the moment.

    Recommended style here is "whatever works for you" :)

    ----
    I wanted to explore how Perl's closures can be manipulated, and ended up creating an object system by accident.
    -- Schemer

    Note: All code is untested, unless otherwise stated