diff options
Diffstat (limited to 'go/weed/benchmark.go')
| -rw-r--r-- | go/weed/benchmark.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/go/weed/benchmark.go b/go/weed/benchmark.go index 2e9872563..0529a1e52 100644 --- a/go/weed/benchmark.go +++ b/go/weed/benchmark.go @@ -46,7 +46,7 @@ var ( func init() { cmdBenchmark.Run = runbenchmark // break init cycle cmdBenchmark.IsDebug = cmdBenchmark.Flag.Bool("debug", false, "verbose debug information") - b.server = cmdBenchmark.Flag.String("server", "localhost:9333", "weedfs master location") + b.server = cmdBenchmark.Flag.String("server", "localhost:9333", "SeaweedFS master location") b.concurrency = cmdBenchmark.Flag.Int("c", 16, "number of concurrent write or read processes") b.fileSize = cmdBenchmark.Flag.Int("size", 1024, "simulated file size in bytes, with random(0~63) bytes padding") b.numberOfFiles = cmdBenchmark.Flag.Int("n", 1024*1024, "number of files to write for each thread") @@ -66,7 +66,7 @@ func init() { var cmdBenchmark = &Command{ UsageLine: "benchmark -server=localhost:9333 -c=10 -n=100000", Short: "benchmark on writing millions of files and read out", - Long: `benchmark on an empty weed file system. + Long: `benchmark on an empty SeaweedFS file system. Two tests during benchmark: 1) write lots of small files to the system @@ -102,7 +102,7 @@ var ( ) func runbenchmark(cmd *Command, args []string) bool { - fmt.Printf("This is Seaweed File System version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH) + fmt.Printf("This is SeaweedFS version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH) if *b.maxCpu < 1 { *b.maxCpu = runtime.NumCPU() } |
