aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-11-12 11:19:13 -0800
committerChris Lu <chris.lu@gmail.com>2018-11-12 11:19:13 -0800
commita62adf62ca116bf95bbf22350236ab85a8c1ee42 (patch)
treeb5aa8e62c2b3706afe36cfe99f8d5cd427e743e1
parentaffe7089618285ef4112da58033fa4798926983d (diff)
downloadseaweedfs-a62adf62ca116bf95bbf22350236ab85a8c1ee42.tar.xz
seaweedfs-a62adf62ca116bf95bbf22350236ab85a8c1ee42.zip
a bit faster
-rw-r--r--weed/command/mount_std.go2
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(),
)