in reply to Re: Double Click of Death on Perl Web Server
in thread Double Click of Death on Perl Web Server
Thank you for that nugget of wisdom. It's good to know if IP6 is needed. Replacing IO::Socket::INET with IO:Socket::IP only requires a slight change to the settings:
IO::Socket::INET Reuse => 1, Becomes: IO::Socket::IP ReuseAddr => 1, ReusePort => 1,OTOH IO::Socket::INET buys 14 years of backwards compatability:
corelist IO::Socket::INET IO::Socket::INET was first released with perl v5.6.0 (2000-Mar-22) corelist IO::Socket::IP IO::Socket::IP was first released with perl v5.19.8 (2014-Jan-20)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Double Click of Death on Perl Web Server
by hippo (Archbishop) on Oct 05, 2018 at 08:11 UTC | |
|
Re^3: Double Click of Death on Perl Web Server
by cavac (Prior) on Oct 05, 2018 at 06:27 UTC | |
|
Re^3: Double Click of Death on Perl Web Server
by Anonymous Monk on Oct 05, 2018 at 19:58 UTC |