in reply to AnyEvent::Fork not working as expected
It looks like AnyEvent::Fork insists in require'ing a module. Separating the Some package into a .pm file makes the "undefined subroutine" go away, though it results in some "uninitialized value" errors.
use lib '.'; my $pool = AnyEvent::Fork ->new ->require("Some") ->send_arg ("str1", "str2") ;
Greetings,
-jo
|
|---|