diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-11-11 00:43:30 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-11-11 00:43:30 -0800 |
| commit | affe7089618285ef4112da58033fa4798926983d (patch) | |
| tree | 47a705c6d014014504ded342205143aeaa142228 | |
| parent | a09eaf87560a73a9b7a11b92dc9272bb95507029 (diff) | |
| download | seaweedfs-affe7089618285ef4112da58033fa4798926983d.tar.xz seaweedfs-affe7089618285ef4112da58033fa4798926983d.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 4d8fe2ddc..d1b3f5e9c 100644 --- a/weed/command/mount_std.go +++ b/weed/command/mount_std.go @@ -41,7 +41,7 @@ func runMount(cmd *Command, args []string) bool { fuse.DefaultPermissions(), fuse.MaxReadahead(1024*128), // TODO: not tested yet, possibly improving read performance fuse.AsyncRead(), - // fuse.WritebackCache(), + fuse.WritebackCache(), ) if err != nil { glog.Fatal(err) |
