in reply to Re^2: Faster locking
in thread Faster locking
Could someone please confirm that Perl would skip trying to acquire a lock when the first 'if' condition is true?
Should I rather place the test in to a nested condition, completely outside of the first?
if ( (1 == 1) || (!flock $lockfile, LOCK_EX | LOCK_NB) )PS: Things appear to be working as expected, but I would still like to know, for my own peace of mind.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Faster locking
by bbs2web (Acolyte) on Apr 04, 2017 at 08:38 UTC |