http://www.perlmonks.org?node_id=1000912


in reply to Re: Does IO::Select work? Solution
in thread Does IO::Select work? Anywhere?

When I only care about readable handles, I prefer to use can_read rather than select.

my @new_readable = $readable_handles->can_read(0);