sshfs 中的大型读取请求是什么?建议启用它们吗?

sshfs 中的大型读取请求是什么?建议启用它们吗?

sshfs 有以下选项:

  -o large_read
         issue large read requests (2.4 only)

这到底起什么作用以及大型读取请求有多大?

是否一般或特别建议我启用此功能(默认情况下启用它)?用途:我使用 sshfs 来编辑大量代码。

谢谢!

答案1

大型读取请求仅对 FUSE 版本 27+ 和不早于 2.4 的 Linux 内核有效(2.6 及更高版本使用动态大小调整)。

http://manpages.ubuntu.com/manpages/precise/man8/mount.fuse.8.html

large_read
      Issue  large  read  requests.   This can improve performance for
      some filesystems, but can also degrade performance. This  option
      is only useful on 2.4.X kernels, as on 2.6 kernels requests size
      is automatically determined for optimum performance.

对于编辑代码,此选项不会给您带来太多好处。很可能您没有古老的 2.4 版内核。

相关内容