diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-12-21 09:30:51 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-12-21 09:30:51 -0800 |
| commit | a9b1ee18afdaee0806d91f253fbb35e5ffd49c76 (patch) | |
| tree | dbb6532e279213ccf030a9f2a0b6f311f9a7ab42 /weed/command/scaffold.go | |
| parent | fcbd04c4253927da2c16821ec1a6565b29de6a6f (diff) | |
| download | seaweedfs-a9b1ee18afdaee0806d91f253fbb35e5ffd49c76.tar.xz seaweedfs-a9b1ee18afdaee0806d91f253fbb35e5ffd49c76.zip | |
default redis reads options
details in https://github.com/chrislusf/seaweedfs/pull/1165
Diffstat (limited to 'weed/command/scaffold.go')
| -rw-r--r-- | weed/command/scaffold.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/weed/command/scaffold.go b/weed/command/scaffold.go index 3ef7ab914..a76466ed6 100644 --- a/weed/command/scaffold.go +++ b/weed/command/scaffold.go @@ -136,8 +136,10 @@ addresses = [ "localhost:30006", ] password = "" -readOnly = false -routeByLatency = false +// allows reads from slave servers or the master, but all writes still go to the master +readOnly = true +// automatically use the closest Redis server for reads +routeByLatency = true [etcd] enabled = false |
