I've heard before that the Event module is the way to go... I've not played with it, but I have tried out IO::Select, and it seemed worthy.

IO::Select runs as an event loop blocking on the select() command until any specified handly (typically any read handle) handles become 'active' by having data available. you can perform non-blocking reads with this quite well, so the only time the server is blocking is when nothing is happening, or when it is actively getting data from a buffer, which is a fast operation.

needless to say this causes other intereseting problems in coding, like dealing with data when it is more likely than not incomplete from the non-blocking read... but things like timeouts should be much less of a problem.

In reply to Re: Listening without forking by Xanatax
in thread Listening without forking by dash2

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.