mirror of
https://gitee.com/sjqzhang/go-fastdfs.git
synced 2024-11-29 17:57:41 +08:00
modify benchmark description
This commit is contained in:
parent
cb3616cbff
commit
ccd3f4f146
@ -413,6 +413,10 @@ GOPATH=$pwd go test -v fileserver.go fileserver_test.go
|
||||
|
||||
- 如何压测?
|
||||
```
|
||||
步骤:
|
||||
一、创建files文件夹
|
||||
二、将gen_file.py复制到files文件夹中,通过python gen_file.py 生成大量文件
|
||||
三、将benchmark.py放到 files目录外(即与files目录同一级),通过python benchmark.py进行压测(注意对benchmark.py中的ip进行修改)
|
||||
先用gen_file.py产生大量文件(注意如果要生成大文件,自已在内容中乘上一个大的数即可)
|
||||
例如:
|
||||
# -*- coding: utf-8 -*-
|
||||
|
@ -4,6 +4,6 @@ j=0
|
||||
for i in range(0,1000000):
|
||||
if i%1000==0:
|
||||
j=i
|
||||
os.system('mkdir %s'%(i))
|
||||
os.system('mkdir -p %s'%(i))
|
||||
with open('%s/%s.txt'%(j,i),'w+') as f:
|
||||
f.write(str(i))
|
||||
|
Loading…
Reference in New Issue
Block a user