You really only need threads if you want to share data between threads in realtime. If not, forking is probably a better choice. Use a fork manager module to fork off a process for each file to be tailed.

If you need to constantly monitor the file tail results, you could use threads, but there are alot of caveats to watch for when using threads. Many times, threads need to be created before any other object code is called(due to non-threadsafe objects), so you may not be able to just use threads any way you want. Threads work well if properly setup for the situation, but you show use the SuperSearch box here and search for all the previous posts on threads. See Why use threads over processes, or why use processes over threads?


I'm not really a human, but I play one on earth. Cogito ergo sum a bum

In reply to Re: Stability of threads in perl 5.8? by zentara
in thread Stability of threads in perl 5.8? by bowei_99

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.