From a62adf62ca116bf95bbf22350236ab85a8c1ee42 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 12 Nov 2018 11:19:13 -0800 Subject: [PATCH] a bit faster --- weed/command/mount_std.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(), )