0

How does FS-based locking,
Eg. What sqlite does, work on the inside?

I'm working on a file-format for storing binary data and I want it to be safe for concurrent use.

Comments
  • 0
    It depends.

    What SQLITE does is MVCC.

    Sounds a bit insane to me for concurrent file access.

    Can u be a bit more specific?

    Platform agnostic?

    How are writes handled? Library or OS?

    Asynchronous? Synchronous?
Add Comment