Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Proposed solution

The main idea is to use buffers for writing to disk so that the majority of time during I/O is spent on writing to file, not to switching between fileswrite large number of bytes per each disk write operation, minimizing switching between files and doing overhead work.

The file write operation should send large number of bytes. There are 3 options for this

...