in reply to mod_perl2 | rabbitMQ | alarm

You could try

1) Use the alarm function to raise a signal after a number of seconds

eval { local $SIG{ALRM}=sub { die "ALARM\n" }; # \n is required alarm 300; # give it 5 minutes # your code here alarm 0; # reset alarm }; if ($@ eq "ALARM\n") { print "Timed out!\n"; }

2) Use Apache TimeOut directive

3) Use Time::Out, it looks cool and is well-documented.

Hope that helps,
SSF

Replies are listed 'Best First'.
Re^2: mod_perl2 | rabbitMQ | alarm
by Anonymous Monk on Mar 26, 2010 at 20:29 UTC
    Hi,

    thanks for your reply. if I read the docs on threaded mpms and Time::Out correctly:

    1) is not possible

    2) I need to finish the request

    3) is based on alarm

    Thanks