Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: ^4 Flocking and In-place editing

by BazB (Priest)
on Jan 27, 2004 at 09:09 UTC ( [id://324379]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Flocking and In-place editing
in thread Flocking and In-place editing

It's considered bad form to use LOCK_UN to release the lock on a filehandle - there is the potential for buffering to ruin your day if another process starts writing to the file before the current process closes the filehandle and flushes any data to disk.

Closing the filehandle will ensure the data on disk is consistent, as buffered data will be flushed, and the flock is released automatically.

If you're locking a semaphore file, as your example here suggests, it's somewhat of a non-issue, but it should be considered for other cases.


If the information in this post is inaccurate, or just plain wrong, don't just downvote - please post explaining what's wrong.
That way everyone learns.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://324379]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-23 07:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found