You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
790 B

  1. # nullrw
  2. Due to how FUSE works there is an overhead to all requests made to a
  3. FUSE filesystem that wouldn't exist for an in kernel one. Meaning that
  4. even a simple passthrough will have some slowdown. However, generally
  5. the overhead is minimal in comparison to the cost of the underlying
  6. I/O. By disabling the underlying I/O we can test the theoretical
  7. performance boundaries.
  8. By enabling `nullrw` mergerfs will work as it always does **except**
  9. that all reads and writes will be no-ops. A write will succeed (the
  10. size of the write will be returned as if it were successful) but
  11. mergerfs does nothing with the data it was given. Similarly a read
  12. will return the size requested but won't touch the buffer.
  13. See the [benchmarking](../benchmarking.md) section for suggestions on how to test.