diff options
| author | Chris Lu <chris.lu@gmail.com> | 2016-11-16 07:09:57 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2016-11-16 07:09:57 -0800 |
| commit | dcaf1796fe0e41e39ac5c9602cb190cf150e7849 (patch) | |
| tree | e437a5a9c6eee42be162d329adefb5c57c347a4a /weed/command/volume.go | |
| parent | f54f530ada119f9bfe45d087c5474a2c70e2b9a1 (diff) | |
| download | seaweedfs-dcaf1796fe0e41e39ac5c9602cb190cf150e7849.tar.xz seaweedfs-dcaf1796fe0e41e39ac5c9602cb190cf150e7849.zip | |
add option to enable caching
Diffstat (limited to 'weed/command/volume.go')
| -rw-r--r-- | weed/command/volume.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/weed/command/volume.go b/weed/command/volume.go index 21369cbe9..ba498b8e4 100644 --- a/weed/command/volume.go +++ b/weed/command/volume.go @@ -36,6 +36,7 @@ type VolumeServerOptions struct { indexType *string fixJpgOrientation *bool readRedirect *bool + enableBytesCache *bool } func init() { @@ -54,6 +55,7 @@ func init() { v.indexType = cmdVolume.Flag.String("index", "memory", "Choose [memory|leveldb|boltdb] mode for memory~performance balance.") v.fixJpgOrientation = cmdVolume.Flag.Bool("images.fix.orientation", true, "Adjust jpg orientation when uploading.") v.readRedirect = cmdVolume.Flag.Bool("read.redirect", true, "Redirect moved or non-local volumes.") + v.enableBytesCache = cmdVolume.Flag.Bool("cache.enable", false, "direct cache instead of OS cache, cost more memory.") } var cmdVolume = &Command{ @@ -132,6 +134,7 @@ func runVolume(cmd *Command, args []string) bool { *v.master, *v.pulseSeconds, *v.dataCenter, *v.rack, v.whiteList, *v.fixJpgOrientation, *v.readRedirect, + *v.enableBytesCache, ) listeningAddress := *v.bindIp + ":" + strconv.Itoa(*v.port) |
