in reply to
Re: Problem with AnyEvent::HTTP
in thread
Problem with AnyEvent::HTTP
When AnyEvent needs a pipe it uses
portable_pipe
which usually maps to
pipe
, but on Windows it creates a pair of TCP sockets (same with
socketpair
/
portable_socketpair
), slow but works better (for
AnyEvent
's purposes) than
pipe
on windows.
Comment on
Re^2: Problem with AnyEvent::HTTP
In Section
Seekers of Perl Wisdom