in reply to Re: Executing long perl scripts (>2h) in a browser
in thread Executing long perl scripts (>2h) in a browser

We can return this discussion to the perl domain by asking what a perl script can do if it finds itself with restricted, but modifiable, resource limits. The short answer is BSD::Resource from Jarkko Hietaniemi. It's a nice interface to the getrlimit and setrlimit calls (and a few others that cannot be invoked as perl builtins).

Resource limitations have to be addressed as subroutine calls, not by something invocable with system(). A child process can (try to) modify its own limits, but it cannot modify the limits of its parent.

  • Comment on Re^2: Executing long perl scripts (>2h) in a browser

Replies are listed 'Best First'.
Re^3: Executing long perl scripts (>2h) in a browser
by ionelica (Initiate) on Jun 30, 2011 at 13:55 UTC

    Thanks a lot for all your suggestions!

    I checked the indicated resources & the "design" suggestions and came out with the following solution: the web page shall be used just to call my script, using the Win32::Process, with the DETACHED_PROCESS option.

    Thanks again, i.