Archive

Archive for November 22nd, 2010

SMB Opportunistic Locking

November 22nd, 2010 No comments

Concurrent writes to a single file are not desirable in any operating system. To prevent this, most operating systems use locks to guarantee that only one process can write to a file at a time. Operating systems traditionally lock entire files, although newer ones allow a range of bytes within a file to be locked. If another process attempts to write to a file (or section of one) that is already locked, it will receive an error from the operating system and will wait until the lock is released. Read more…

Categories: Network Design Tags: