http://qs1969.pair.com?node_id=11131562


in reply to File lock demo

See also:

Replies are listed 'Best First'.
Re^2: File lock demo
by LanX (Saint) on Apr 23, 2021 at 15:36 UTC
    Thanks a lot!!!

    I was really intrigued when I saw the DATA° trick in MJD's talk but this is really not a good idea on Win.

    Contrary to the docs in is the implementation of flock NOT advisory on Win, another process can't read the locked file.

    So locking DATA means that a separate perl.exe will fail starting the script.

    Even worse, I was even able to produce race conditions where it sometimes seemed to work oO.

    The trick was to start multiple perl.exe at once, like this they were able to read the file before the run-time started which locked it ... very confusing.

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery

    °) for those wondering, DATA is just the filehandle opened to the current script...