modify benchmark description

This commit is contained in:
s_jqzhang 2019-04-03 09:59:34 +08:00
parent cb3616cbff
commit ccd3f4f146
2 changed files with 5 additions and 1 deletions

View File

@ -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 -*-

View File

@ -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))