in reply to Re^3: Writing to a log file without colliding
in thread Writing to a log file without colliding

locking over NFS is usually pretty sketchy regardless of wether it's a lock on a file or a directory. Unix really doesn't make a huge distinction between a file and a directory anyway, so the atomicness (I love making up words) of a lock on a file vs. directory should be the same.

There are some NFS server appliances that don't use a unix file system (NetApp for one) where the atomicness may differ a bit.

It's been quite a long time since I've played with anything other than sharing home directories on NFS so some of my thinking is most likely dated. :)

  • Comment on Re^4: Writing to a log file without colliding