0

I am starting to learn about LMDB, but I am having trouble understanding how LMDB writes to a read-only mmap (read-only is the default configuration). Does anyone have a simple explanation as to how this works?

Alex
  • 1

1 Answers1

1

It uses the filesystem API to write, preferentially pwritev on Unix.

Timothy Baldwin
  • 3,551
  • 1
  • 14
  • 23