diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-11-12 11:19:13 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-11-12 11:19:13 -0800 |
| commit | a62adf62ca116bf95bbf22350236ab85a8c1ee42 (patch) | |
| tree | b5aa8e62c2b3706afe36cfe99f8d5cd427e743e1 | |
| parent | affe7089618285ef4112da58033fa4798926983d (diff) | |
| download | seaweedfs-a62adf62ca116bf95bbf22350236ab85a8c1ee42.tar.xz seaweedfs-a62adf62ca116bf95bbf22350236ab85a8c1ee42.zip | |
a bit faster
| -rw-r--r-- | weed/command/mount_std.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go index d1b3f5e9c..0bc0ddd53 100644 --- a/weed/command/mount_std.go +++ b/weed/command/mount_std.go @@ -39,7 +39,7 @@ func runMount(cmd *Command, args []string) bool { fuse.AllowOther(), fuse.AllowSUID(), fuse.DefaultPermissions(), - fuse.MaxReadahead(1024*128), // TODO: not tested yet, possibly improving read performance + fuse.MaxReadahead(1024*128), fuse.AsyncRead(), fuse.WritebackCache(), ) |
