http://www.perlmonks.org?node_id=1015762


in reply to Re: Install updated version of script such that running instances cannot use an inconsistent state
in thread Install updated version of script such that running instances cannot use an inconsistent state

How do you know that one second is enough? A CGI script could run for longer than that sometimes.

  • Comment on Re^2: Install updated version of script such that running instances cannot use an inconsistent state

Replies are listed 'Best First'.
Re^3: Install updated version of script such that running instances cannot use an inconsistent state
by tobyink (Canon) on Jan 28, 2013 at 21:34 UTC

    True, but I'd generally expect it to have at least finished compiling.

    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name